Redirection
  • > outputFile, empty file
  • set -o noclobber, avoid to overwrite existing file
  • cat test > testFile, redirect output to a file
  • ls -al | more, pipe
  • >>, append text to existing file
  • IO stream number