zeus 4 years ago
parent
commit
f4302fbf0a
  1. 2
      cut/1_Cutting_Column/codeanswer
  2. 2
      cut/1_Cutting_Column/codehelp
  3. 2
      cut/1_Cutting_Column/q-info

2
cut/1_Cutting_Column/codeanswer

@ -1 +1 @@
grep "Jordan" $LLO_DATAFILE | cut -c 8- | head -5 grep "Jordan" $LLO_DATAFILE | cut -c -8 | head -5

2
cut/1_Cutting_Column/codehelp

@ -1,2 +1,2 @@
-b It uses a special form: selecting bytes upto the end of the line position is specified and the ending position is omitted.

2
cut/1_Cutting_Column/q-info

@ -3,7 +3,7 @@ Try to run
[source,sh] [source,sh]
---- ----
cut -c 3- $LLO_DATAFILE | head -5 cut -c -3 $LLO_DATAFILE | head -5
---- ----
and see the Results! and see the Results!

Loading…
Cancel
Save