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
364 B
12 lines
364 B
4 years ago
|
|
||
|
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
|