Redirecting Input/Output
- host% cat filea > fileb (redirect creates fileb)
- host% cat filec >> fileb (appends to fileb)
- host% cat filed >& e.file (error msgs to e.file)
- host% cat filex >>& e.file (append error to e.file)
- host% mail -s “sub” address < file (get input from file)