sign in
|
add example
|
see also:
xargs
,
stat
,
strftime
,
ctime
find
search for files in a directory hierarchy
[
package
|
man 1
|
usage
|
info
|
wiki
|
homepage
]
examples
configs
questions
[
new example
]
copy
59
9
find /usr -newer /tmp/stamp$$
find
details
|
copy
40
3
find $HOME -name '*.c' -print | xargs grep -l sprintf
find
xargs
details
|
copy
29
1
find /usr/include -name '*.h' | xargs grep -l mode_t > todo
find
xargs
details
|
copy
29
0
find . -name '*.h' | zenity --list --title "Search Results" --text "Finding all header files.." --column "Files"
find
zenity
source
|
details
|
copy
27
6
find . -lname '*sysdep.c'
find
details
|
copy
27
2
find /tmp -path /tmp/umsp/passwd -exec /bin/rm
find
details
|
copy
26
2
find . -name '*.h' -execdir diff -u '{}' /tmp/master ';'
find
details
|
copy
26
2
find ~ ( -name '*~' -o -name '#*#' ) -print0 |
find
details
|
copy
25
1
find . -wholename './src/emacs' -prune -o -print
find
details
|
copy
24
1
find /usr/local/doc -name '*.texi'
find
details
|
copy
22
3
find ~ -daystart -type f -mtime 1
find
details
|
copy
20
0
find . -name '.#*' -print0 | xargs -0r rm -f
find
xargs
details
|
copy
18
0
find /tmp -name *bar
Search the /tmp directory for any files that end in bar
find
details
|
copy
18
0
find -exec sh -c "something {}" ;
find
details
|
copy
16
3
find . -name '#*' -print | xargs echo
find
xargs
details
|
copy
15
5
find bills -type f -execdir sort -o '{}.sorted' '{}' ';'
find
details
|
copy
14
0
find /tmp -depth -user "$LOGNAME" -type f -delete
find
details
|
copy
13
0
find /u/bill -amin +2 -amin -6
find
details
|
copy
13
2
find startpoint -tests ... -exec sh -c 'scp "$@" remote:/dest' sh {} +
find
details
|
copy
13
4
find . -name '.#*' -depth -delete
find
details
|
[
new config
]
[
ask question
]