find /usr -newer /tmp/stamp$$
find $HOME -name '*.c' -print | xargs grep -l sprintf
find /usr/include -name '*.h' | xargs grep -l mode_t > todo
find . -lname '*sysdep.c'
find /tmp -path /tmp/umsp/passwd -exec /bin/rm
find /usr/local/doc -name '*.texi'
find ~ ( -name '*~' -o -name '#*#' ) -print0 |
find . -wholename './src/emacs' -prune -o -print
find bills -type f -execdir sort -o '{}.sorted' '{}' ';'
find ~ -daystart -type f -mtime 1
find . -name '.#*' -print0 | xargs -0r rm -f
find -exec sh -c "something {}" ;
find . -name '#*' -print | xargs echo
find . -name '*.h' -execdir diff -u '{}' /tmp/master ';'
find /tmp -depth -user "$LOGNAME" -type f -delete
find . -type d -not -perm -ug=w | xargs chmod ug+w