1 ----- test: cut -f 1 d_cut.in ----- 2 1 3 4 12 5 6 qwe 7 1 8 9 12:34:56 10 qwe:rty:uio:p[]:asd:fgh:jkl:zxc:vbn:nm 11 :qwe:::rty:uio::p[]:asd:fgh:jkl:zxc:vbn:nm 12 ----- test: cut -f 2 d_cut.in ----- 13 1 14 15 34 16 12 17 18 1 19 20 12:34:56 21 qwe:rty:uio:p[]:asd:fgh:jkl:zxc:vbn:nm 22 :qwe:::rty:uio::p[]:asd:fgh:jkl:zxc:vbn:nm 23 ----- test: cut -f 3 d_cut.in ----- 24 1 25 26 56 27 28 rty 29 1 30 31 12:34:56 32 qwe:rty:uio:p[]:asd:fgh:jkl:zxc:vbn:nm 33 :qwe:::rty:uio::p[]:asd:fgh:jkl:zxc:vbn:nm 34 ----- test: cut -f 1-2 d_cut.in ----- 35 1 36 37 12 34 38 12 39 qwe 40 1 41 42 12:34:56 43 qwe:rty:uio:p[]:asd:fgh:jkl:zxc:vbn:nm 44 :qwe:::rty:uio::p[]:asd:fgh:jkl:zxc:vbn:nm 45 ----- test: cut -f 2,3 d_cut.in ----- 46 1 47 48 34 56 49 12 50 rty 51 1 52 53 12:34:56 54 qwe:rty:uio:p[]:asd:fgh:jkl:zxc:vbn:nm 55 :qwe:::rty:uio::p[]:asd:fgh:jkl:zxc:vbn:nm 56 ----- test: cut -f 4 d_cut.in ----- 57 1 58 59 60 34 61 uio 62 1 63 64 12:34:56 65 qwe:rty:uio:p[]:asd:fgh:jkl:zxc:vbn:nm 66 :qwe:::rty:uio::p[]:asd:fgh:jkl:zxc:vbn:nm 67 ----- test: cut -f 1-3,4-7 d_cut.in ----- 68 1 69 70 12 34 56 71 12 34 56 72 qwe rty uio p[] asd 73 1 74 75 12:34:56 76 qwe:rty:uio:p[]:asd:fgh:jkl:zxc:vbn:nm 77 :qwe:::rty:uio::p[]:asd:fgh:jkl:zxc:vbn:nm 78 ----- test: cut -f 1,2-7 d_cut.in ----- 79 1 80 81 12 34 56 82 12 34 56 83 qwe rty uio p[] asd 84 1 85 86 12:34:56 87 qwe:rty:uio:p[]:asd:fgh:jkl:zxc:vbn:nm 88 :qwe:::rty:uio::p[]:asd:fgh:jkl:zxc:vbn:nm 89