Simple shell Simple shell commands cd, cp, mv, rm echo - Prints parameters to stdout cat - Prints files (or stdin) to stdout Redirection echo "foo" > foo.txt echo "bar" >> foo.txt cat < hello.txt Redirection caveat prog file.txt > file.txt