Encyclopedia > Named pipes

  Article Content

Pipe (computing)

Redirected from Named pipes

Pipe is the name of the ASCII character at position 124 (decimal): |

In the context of Unix operating systems, as well as other Operating Systems like MS-DOS, a pipe signifies that the output of one program feeds directly as input to another program. The Unix shell uses the pipe character (|) to join programs together. A sequence of commands joined together by pipes is known as a pipeline. Often filter programs form the constituent programs in a pipeline -- see Pipes and filters.

An example of a pipeline, which should print the numbers from 1 to 10:

while : ; do echo ; done | head | nl -b a

See pipe for other uses of the word.



All Wikipedia text is available under the terms of the GNU Free Documentation License

 
  Search Encyclopedia

Search over one million articles, find something about almost anything!
 
 
  
  Featured Article
Northwest Harbor, New York

... 55.2% are married couples living together, 9.2% have a female householder with no husband present, and 30.7% are non-families. 22.6% of all households are made up of ...

 
 
 
This page was created in 37.8 ms