First page
Back
Continue
Last page
Overview
Using Pipes To Connect Processes
Pipes (the
|
character) let you redirect output from one command to become the input to another command
$ ls /usr/lib | less
Can create
pipelines
- a powerful feature of Linux
$ cut -f1 -d: passwd | sort -r | less