Lines Matching refs:testing
7 [ -f testing.sh ] && . testing.sh
16 testing "-b a,a,a" "cut -b 3,3,3 abc.txt" "e\np\ne\n" "" ""
17 testing "-b overlaps" "cut -b 1-3,2-5,7-9,9-10 abc.txt" \
19 testing "-b encapsulated" "cut -b 3-8,4-6 abc.txt" "e:two:\npha:be\ne quic\n" \
21 testing "-bO overlaps" \
24 testing "high-low error" "cut -b 8-3 abc.txt 2>/dev/null || echo err" "err\n" \
27 testing "-c a-b" "cut -c 4-10 abc.txt" ":two:th\nha:beta\n quick \n" "" ""
28 testing "-c a-" "cut -c 41- abc.txt" "\ntheta:iota:kappa:lambda:mu\ndog\n" "" ""
29 testing "-c -b" "cut -c -39 abc.txt" \
32 testing "-c a" "cut -c 40 abc.txt" "\n:\n \n" "" ""
33 testing "-c a,b-c,d" "cut -c 3,5-7,10 abc.txt" "etwoh\npa:ba\nequi \n" "" ""
34 toyonly testing "-c japan.txt" 'cut -c 3-6,9-12 "$FILES/utf8/japan.txt"' \
37 toyonly testing "-C test1.txt" 'cut -C -1 "$FILES/utf8/test1.txt"' \
54 testing "-f a-" "cut -d ':' -f 5- abc.txt" "five:six:seven\nepsilon:zeta:eta:theta:iota:kappa:lambd…
56 testing "show whole line with no delim" "cut -d ' ' -f 3 abc.txt" \
59 testing "with echo, -c (a-b)" "echo 'ref_categorie=test' | cut -c 1-15 " "ref_categorie=t\n" "" ""
60 testing "with echo, -c (a)" "echo 'ref_categorie=test' | cut -c 14" "=\n" "" ""
65 testing "with -c (a,b,c)" "cut -c 4,5,20 abc.txt" "det\n" "" ""
67 testing "with -b (a,b,c)" "cut -b 4,5,20 abc.txt" "det\n" "" ""
75 testing "with -d -f(:) -s" "cut -d: -f3 -s abc.txt" "Itorre\nNasium\nAncholie\nJucacion\n" "" ""
77 testing "with -d -f( ) -s" "cut -d' ' -f3 -s abc.txt && echo yes" "yes\n" "" ""
79 testing "with -d -f(a) -s" "cut -da -f3 -s abc.txt" "n\nsium:Jim\n\ncion:Ed\n" "" ""
81 testing "with -d -f(a) -s -n" "cut -da -f3 -s -n abc.txt" "n\nsium:Jim\n\ncion:Ed\n" "" ""