Home | History | Annotate | Line # | Download | only in cut
      1 ----- test: cut -f 1 -d : -s d_cut.in -----
      2 12
      3 qwe
      4 
      5 ----- test: cut -f 2 -d : -s d_cut.in -----
      6 34
      7 rty
      8 qwe
      9 ----- test: cut -f 3 -d : -s d_cut.in -----
     10 56
     11 uio
     12 
     13 ----- test: cut -f 1-2 -d : -s d_cut.in -----
     14 12:34
     15 qwe:rty
     16 :qwe
     17 ----- test: cut -f 2,3 -d : -s d_cut.in -----
     18 34:56
     19 rty:uio
     20 qwe:
     21 ----- test: cut -f 4 -d : -s d_cut.in -----
     22 
     23 p[]
     24 
     25 ----- test: cut -f 1-3,4-7 -d : -s d_cut.in -----
     26 12:34:56
     27 qwe:rty:uio:p[]:asd:fgh:jkl
     28 :qwe:::rty:uio:
     29 ----- test: cut -f 1,2-7 -d : -s d_cut.in -----
     30 12:34:56
     31 qwe:rty:uio:p[]:asd:fgh:jkl
     32 :qwe:::rty:uio:
     33