echo "Display Contents of a file on the standard output (stdout)." echo "----------------------------------------------------------" cat $LLO_DATAFILE | head -5 echo "" echo "redirect standard output of a file into a new file" echo "----------------------------------------------------------" cat $LLO_DATAFILE | head -5 > /tmp/newfile ls -al /tmp/newfile