Summary of Unix Commands

Pipes, redirection, and backtick. Show how ps and ls send output to the screen stdout. Stdin < Stdout > Stdin and stderr prog >& file. Backticks change the order of execution on a command line. The here document. ps -el > file. ps –el | grep childrja. cat file | cat > newfile ................
................