Pipelines
- Standard tools read from standard input and write to standard output
du -ks ~/* | sort -n | lpr -Preiniger
- Redirect to and from files
cat <infile >outfile
- Standard error might need to be caught
./my_program 2>errors <infile
- Append instead of delete & replace:
cat extra_stuff >>bigfile