I/O Redirection & Pipes

20 commands

command > file.txtcommand >> file.txtcommand < file.txtcommand 2> error.logcommand 2>> error.logcommand > out.txt 2> err.txtcommand 2>&1command > out.txt 2>&1command &> file.txtcommand > /dev/nullcommand 2>/dev/nullcommand &>/dev/nullcmd1 | cmd2cmd1 | tee file.txt | cmd2cmd1 |& cmd2diff <(cmd1) <(cmd2)cmd1 > >(cmd2)cat file.txt | xargs grep 'pattern'exec 3> file.txtexec 3>&-
Search all 7,657 commands instead.