Difference between revisions of "Pipe"

From Hackepedia
Jump to navigationJump to search
 
Line 1: Line 1:
 
If you need to send the output of one program to another program this is done by way of piping.  For example you are listing the directory of your current working directory and want to see it in chunks called pages, you'll pipe the output of [[ls]] to [[more]] like so:
 
If you need to send the output of one program to another program this is done by way of piping.  For example you are listing the directory of your current working directory and want to see it in chunks called pages, you'll pipe the output of [[ls]] to [[more]] like so:
 
  $ ls | more
 
  $ ls | more
when you create along chain of piped commands this is called a pipe chain and can look like this:
+
when you create along chain of piped commands this is called a pipeline and can look like this:
 
  $ ps ax | grep httpd | awk '{print $1}' | xargs kill
 
  $ ps ax | grep httpd | awk '{print $1}' | xargs kill

Revision as of 12:06, 6 October 2005

If you need to send the output of one program to another program this is done by way of piping. For example you are listing the directory of your current working directory and want to see it in chunks called pages, you'll pipe the output of ls to more like so:

$ ls | more

when you create along chain of piped commands this is called a pipeline and can look like this:

$ ps ax | grep httpd | awk '{print $1}' | xargs kill