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.
15 lines
295 B
15 lines
295 B
|
|
echo "Cutting Contents of a file on the standard output (stdout)."
|
|
echo "-----with fields-----"
|
|
|
|
echo ""
|
|
echo "field 5"
|
|
cut -d',' -f5 $LLO_DATAFILE | head -5
|
|
|
|
echo ""
|
|
echo "field 8,13"
|
|
cut -d',' -f8,13 $LLO_DATAFILE | head -5
|
|
echo ""
|
|
|
|
echo "field 8-10"
|
|
cut -d',' -f8-10 $LLO_DATAFILE | head -5
|
|
|