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