Input/Output Redirection Most Unix commands are designed to benefit from redirection All command interpreters allow redirection like this: command < file command > file command >> file Redirecting stderr: sh: command 2> file csh (stdout+err): command >& file Pretty often, redirection is all you need to perform your task