You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
360 B

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