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
289 B

4 years ago
echo "Cutting Contents of a file on the standard output (stdout)."
4 years ago
echo "-------------------------------"
4 years ago
cut -b1,3 $LLO_DATAFILE | head -5
echo ""
echo "Cutting Contents of a file on the standard output (stdout)."
4 years ago
echo "-----with ranges-----"
4 years ago
cut -b1-5,10-15 $LLO_DATAFILE | head -5