String Commands Together

Pipes are used to redirect the Standard Output of one command to the Standard Input of another.

Example

who | sort  # sends the output of who into the sort program, printing an alphabetically sorted listed of logged-in users.  
        

Tags