Slide 12
Slide 12 text
Unix Command Line Productivity Tips http://www.bbsinc.biz Copyright 2008, Bennett Business Solutions, Inc.
find
Lists all directories and files recursively, with many options:
• -name # name filtering, including regex
• -type # directories, files, links, sockets, and more
• -depth, -mindepth, -maxdepth # directory depth
constraints
• -empty # file or directory is empty
• -exec, -execdir, -ok, -okdir, -delete # run a command on
each entry found
• (others) - file date/time filtering, link count, group
12