Archive for July 12th, 2007

12Jul

The power of pipes

One of the great features of the UNIX shell is that you can send the output from one command to another for further processing. Take the following example for instance: ls -l | grep "Jul 12" This takes the long directory file listing output and sends it to grep for subsetting (all files created today [...]