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