Re- directing I/ O to and from Files
Both input and output streams can be redirected to/ from files
Output to a file (creating or overwriting): $ df > my-system.txt
Appending output to a file: $ who >> my-system.txt
Take input from one file, output to another: $ sort < /etc/passwd > passwd.sorted