|
|
The pipeline operator, ``|'', creates two child threads from the parent thread, and the parent is blocked until both children have finished executing.
For example, the command:
sort < F | uniq > F2sorts records from the file F and sends the output to the uniq command, which then removes duplicate lines, and sends the output to a file F2.
See also: