Pipe: Difference between revisions
From Hackepedia
Jump to navigationJump to search
No edit summary |
mNo edit summary |
||
Line 3: | Line 3: | ||
when you create along chain of piped commands this is called a pipeline and can look like this (do not run this unless you need to kill your webserver via brute force method): | when you create along chain of piped commands this is called a pipeline and can look like this (do not run this unless you need to kill your webserver via brute force method): | ||
$ ps ax | grep httpd | awk '{print $1}' | xargs kill | $ ps ax | grep httpd | awk '{print $1}' | xargs kill | ||
Conceptually, pipes look something like this: [[image:pipe.png|center]] |
Revision as of 20:47, 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 (do not run this unless you need to kill your webserver via brute force method):
$ ps ax | grep httpd | awk '{print $1}' | xargs kill
Conceptually, pipes look something like this: File:Pipe.png