First page
Back
Continue
Last page
Overview
Useful Pipe Targets
less
displays input one page at a time
ls -l | less
mail
sends input via email:
ls -l | mail -s “Files” bob@example.com
lpr
sends input to the printer
ls -l | lpr
xargs
converts input to argument list
cat files_to_delete.txt | xargs rm -f