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.
11 lines
289 B
11 lines
289 B
|
|
echo "Cutting Contents of a file on the standard output (stdout)."
|
|
echo "-------------------------------"
|
|
|
|
cut -b1,3 $LLO_DATAFILE | head -5
|
|
echo ""
|
|
|
|
echo "Cutting Contents of a file on the standard output (stdout)."
|
|
echo "-----with ranges-----"
|
|
|
|
cut -b1-5,10-15 $LLO_DATAFILE | head -5
|
|
|