In general, most commands do not understand directory structures and
rely on the shell to expand wildcards to directory names. That is, to
delete all files whose names end with a .o in a
group of directories, you could type:
Not only is this tedious to type, it may not find all of the files
you are searching for. The shell has certain blind spots. It will not
match files in directories whose names start with a dot. And, if any
files match */*/*/*.o, they would not be deleted.
find is the answer to these problems.
A simple example of find is using it to print
the names of all the files in the directory and all subdirectories.
This is done with the simple command:
% find . -print
The first arguments to find are directory and
file pathnames -- in the example, a dot (.) is one name for the
current directory. The arguments after the pathnames always start
with a minus sign (-) and tell
find what to do once it finds a file; these are
the search operators. In this case, the filename is printed.
You can use the tilde (~), as well as particular
paths. For example:
% find ~ ~barnett /usr/local -print
And if you have a very slow day, you can type:
% find / -print