Lines Matching full:xargs
7 testing "xargs" "xargs && echo yes" "hello\nyes\n" "" "hello"
8 testing "spaces" "xargs" \
11 testing "-n 0" "xargs -n 0 2>/dev/null || echo ok" "ok\n" \
13 testing "-n 2" "xargs -n 2" "one two\nthree\n" "" "one \ntwo\n three"
14 testing "-n exact match" "xargs -n 3" "one two three\n" "" "one two three"
15 testing "xargs2" "xargs -n2" "one two\nthree four\nfive\n" "" \
17 testing "-s too long" "xargs -s 9 echo 2>/dev/null || echo ok" \
19 testing "-s 13" "xargs -s 13 echo" "one two\nthree\n" "" "one \ntwo\n three"
20 testing "-s 12" "xargs -s 12 echo" "one\ntwo\nthree\n" "" "one \ntwo\n three"
23 testing "command -opt" "xargs -n2 ls -1" "one\ntwo\nthree\n" "" \
27 testing "-0 -n1" "printf 'a\0b\0c\0d\0e\0f' | xargs -0 -n1 echo _" "_ a\n_ b\n_ c\n_ d\n_ e\n_ f\n"…
28 testing "-0 -n2" "printf 'a\0b\0c\0d\0e\0f' | xargs -0 -n2 echo _" "_ a b\n_ c d\n_ e f\n" "" ""
30 testing "-t" "xargs -t 2>stderr ; cat stderr ; rm stderr" "one two\necho one two \n" "" "one\ntwo\n"
32 testing "-E END" "xargs -E END" "a b\n" "" "a\nb\nEND\nc\nd\n"
34 testing "-r" "xargs -r echo x" "" "" ""
37 #testing "-x" "xargs -x -s 9 || echo expected" "one\nexpected\n" "" "one\ntwo\nthree"
46 # xargs command_not_found - returns 127
47 # xargs false - returns 1