Lines Matching +full:- +full:find
3 [ -f testing.sh ] && . testing.sh
9 # fs timestamp granularity isn't always enough for -newer to tell, so wait
11 ln -s fifo link
16 touch perm/all-read-only
17 chmod a=r perm/all-read-only
23 testing "-type l -a -type d -o -type p" \
24 "find dir -type l -a -type d -o -type p" "dir/fifo\n" "" ""
25 testing "-type l -type d -o -type p" "find dir -type l -type d -o -type p" \
27 testing "-type l -o -type d -a -type p" \
28 "find dir -type l -o -type d -a -type p" "dir/link\n" "" ""
29 testing "-type l -o -type d -type p" "find dir -type l -o -type d -type p" \
31 testing "-type l ( -type d -o -type l )" \
32 "find dir -type l \( -type d -o -type l \)" "dir/link\n" "" ""
34 "find dir \( \( -type l \) \( -type d -o \( \( -type l \) \) \) \)" \
36 testing "( -type p -o -type d ) -type p" \
37 "find dir \( -type p -o -type d \) -type p" "dir/fifo\n" "" ""
38 testing "-type l -o -type d -type p -o -type f" \
39 "find dir -type l -o -type d -type p -o -type f | sort" \
41 testing "-type l,f" \
42 "find dir -type l,f | sort" "dir/file\ndir/link\n" "" ""
44 # Testing short-circuit evaluations
46 testing "-type f -a -print" \
47 "find dir -type f -a -print" "dir/file\n" "" ""
48 testing "-print -o -print" \
49 "find dir -type f -a \( -print -o -print \)" "dir/file\n" "" ""
52 # find -type f -user nobody -exec : \;
53 # find -type f -user nobody -exec : -exec : \;
57 testing " " "cd perm; find" ".\n./all-read-only\n" "" ""
58 testing "-type f -user -exec" \
59 "find dir -type f -user $USER -exec ls {} \\;" "dir/file\n" "" ""
60 testing "-type l -newer -exec" \
61 "find dir -type l -newer dir/file -exec ls {} \\;" "dir/link\n" "" ""
62 testing "-exec true \\; -print" \
63 "find dir/file -exec true \\; -print" "dir/file\n" "" ""
64 testing "-exec false \\; -print" \
65 "find dir/file -exec false \\; -print" "" "" ""
66 testing "-perm (exact success)" \
67 "find perm -type f -perm 0444" "perm/all-read-only\n" "" ""
68 testing "-perm (exact failure)" \
69 "find perm -type f -perm 0400" "" "" ""
70 testing "-perm (min success)" \
71 "find perm -type f -perm -0400" "perm/all-read-only\n" "" ""
72 testing "-perm (min failure)" \
73 "find perm -type f -perm -0600" "" "" ""
74 testing "-perm (any success)" \
75 "find perm -type f -perm -0444" "perm/all-read-only\n" "" ""
76 testing "-perm (any failure)" \
77 "find perm -type f -perm -0222" "" "" ""
79 testing "unterminated -exec {}" \
80 "find dir -type f -exec ls {} 2>/dev/null || echo bad" "bad\n" "" ""
81 testing "-exec {} +" \
82 "find dir -type f -exec ls {} +" "dir/file\n" "" ""
84 # `find . -iname` was segfaulting
85 testing "-name file" "find dir -name file" "dir/file\n" "" ""
86 testing "-name FILE" "find dir -name FILE" "" "" ""
88 ln -s ../broken dir/link2
89 testing "-iname file" "find dir -iname FILE" "dir/file\n" "" ""
90 testing "-iname FILE" "find dir -iname FILE" "dir/file\n" "" ""
92 testing "-name (no arguments)" \
93 "find dir -name 2>&1 | grep -o '[-]name'" "-name\n" "" ""
94 testing "-iname (no arguments)" \
95 "find dir -iname 2>&1 | grep -o '[-]iname'" "-iname\n" "" ""
96 testing "-lname" "find dir -lname '?./brok*'" "dir/link2\n" "" ""
97 testing "-ilname" "find dir -ilname '*ROK*'" "dir/link2\n" "" ""
99 testing "" "find dir \( -iname file -o -iname missing \) -exec echo {} \;" \
102 testing "-path glob" "find dir -path 'dir*e'" "dir/file\n" "" ""
103 testing "-wholename glob" "find dir -wholename 'dir*e'" "dir/file\n" "" ""
104 testing "-ipath glob" "find dir -ipath 'dIr*E'" "dir/file\n" "" ""
105 testing "-iwholename glob" "find dir -iwholename 'dIr*E'" "dir/file\n" "" ""
106 testing "-printf" "find dir -name file -printf '%f %p %P %s'" \
108 testing "-printf .N" "find dir -name file -printf %.2f" "fi" "" ""
109 # findutils find supports C letter escapes and \0 octal, but not \x or \u.
110 testing "-printf escapes" \
111 "find dir -name file -printf '\0 \007 \t \079' | xxd -p" \
113 # findutils find treats \c as "no more output from this -printf", not "no more
114 # output from find".
115 testing "-printf \\c escape" "find dir -name f* -printf 'x\cy'" "xx" "" ""
118 ln -s does-not-exist dir/dangler
119 testing "-L dangling symlink silent" \
120 "LANG=C find -L dir -name file 2>&1" "dir/file\n" "" ""
121 rm -f dir/dangler
124 ln -s looper dir/looper
125 testing "-L symlink loop noisy" \
126 "LANG=C find -L dir -name file 2>err ; grep -q dir/looper err || echo missing error" \
129 testing "-false" "find dir -false" "" "" ""
130 testing "-true" "find dir/file -true" "dir/file\n" "" ""
133 "LANG=C find -L dir/missing-root 2>err ; grep -q dir/missing-root err || echo missing error" \
135 rm -f dir/looper err
137 testing "-path match root" "find dir/f* -path dir/file" "dir/file\n" "" ""
138 testing "-name match root" "find dir/f* -name file" "dir/file\n" "" ""
141 ln -s nowhere broken
142 testing "-H broken" "find -H broken" "broken\n" "" ""
143 testing "-L broken" "find -L broken" "broken\n" "" ""
145 testing "one slash" 'find /etc/ -maxdepth 1 | grep /passwd\$' '/etc/passwd\n' \
147 testing 'empty arg' 'find "" dir -name file 2>/dev/null' 'dir/file\n' '' ''
148 testing 'quit' 'find dir perm -print -quit' 'dir\n' '' ''
150 testing 'samefile' 'find . -samefile dir/file | sort' \
152 rm -rf dir broken perm irrelevant
155 touch -d @12345 dir/one
156 touch -d @12346 dir/two
157 testing 'newerat' 'find dir -type f -newerat @12345' 'dir/two\n' '' ''
158 testing 'newer nano' 'find dir -type f -newerat @12345.67890' 'dir/two\n' '' ''
159 ln -s one dir/three
160 testing '-size implies -type f' 'find dir -size -1M | sort' \
162 rm -rf dir
167 'touch aaaaaⱥⱥⱥⱥⱥⱥⱥⱥⱥ; find . -iname aaaaaȺȺȺȺȺȺȺȺȺ' './aaaaaⱥⱥⱥⱥⱥⱥⱥⱥⱥ\n' \