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