Find (Unix)
In Unix-like operating systems, It initiates a search from a desired starting location and then recursively traverses the nodes (directories) of a hierarchical structure (typically a tree). find can traverse and search through different file systems of partitions belonging to one or more storage devices mounted under the starting directory.[1] The possible search criteria include a pattern to match against the filename or a time range to match against the modification time or access time of the file. By default, The related History
The GNU The find command has also been ported to the IBM i operating system.[5] Find syntax$ find [-H|-L] path... [operand_expression...]
The two options control how the At least one path must precede the expression. Expression elements are separated by the command-line argument boundary, usually represented as whitespace in shell syntax. They are evaluated from left to right. They can contain logical elements such as AND ( GNU Predicates
Commonly-used primaries include:
If the expression uses none of OperatorsOperators can be used to enhance the expressions of the find command. Operators are listed in order of decreasing precedence:
$ find . -name 'fileA_*' -o -name 'fileB_*'
This command searches the current working directory tree for files whose names start with $ find . -name 'foo.cpp' '!' -path '.svn'
This command searches the current working directory tree except the subdirectory tree ".svn" for files whose name is "foo.cpp". We quote the POSIX protection from infinite outputReal-world file systems often contain looped structures created through the use of hard or soft links. The POSIX standard requires that
ExamplesFrom the current working directory$ find . -name 'my*'
This searches the current working directory tree for files whose names start with my. The single quotes avoid the shell expansion—without them the shell would replace my* with the list of files whose names begin with my in the current working directory. In newer versions of the program, the directory may be omitted, and it will imply the current working directory. Regular files only$ find . -name 'my*' -type f
This limits the results of the above search to only regular files, therefore excluding directories, special files, symbolic links, etc. my* is enclosed in single quotes (apostrophes) as otherwise the shell would replace it with the list of files in the current working directory starting with my... CommandsThe previous examples created listings of results because, by default, $ find . -name 'my*' -type f -ls
This prints extended file information. Search all directories$ find / -name myfile -type f -print
This searches every directory for a regular file whose name is myfile and prints it to the screen. It is generally not a good idea to look for files this way. This can take a considerable amount of time, so it is best to specify the directory more precisely. Some operating systems may mount dynamic file systems that are not congenial to Search all but one subdirectory tree$ find / -path excluded_path -prune -o -type f -name myfile -print
This searches every directory except the subdirectory tree excluded_path (full path including the leading /) that is pruned by the Specify a directory$ find /home/weedly -name myfile -type f -print
This searches the /home/weedly directory tree for regular files named myfile. You should always specify the directory to the deepest level you can remember. Search several directories$ find local /tmp -name mydir -type d -print
This searches the local subdirectory tree of the current working directory and the /tmp directory tree for directories named mydir. Ignore errorsIf you're doing this as a user other than root, you might want to ignore permission denied (and any other) errors. Since errors are printed to stderr, they can be suppressed by redirecting the output to /dev/null. The following example shows how to do this in the bash shell: $ find / -name myfile -type f -print 2> /dev/null
If you are a csh or tcsh user, you cannot redirect stderr without redirecting stdout as well. You can use sh to run the $ sh -c "find / -name myfile -type f -print 2> /dev/null"
An alternate method when using csh or tcsh is to pipe the output from stdout and stderr into a grep command. This example shows how to suppress lines that contain permission denied errors. $ find . -name myfile |& grep -v 'Permission denied'
Find any one of differently named files$ find . \( -name '*jsp' -o -name '*java' \) -type f -ls
The Execute an action$ find /var/ftp/mp3 -name '*.mp3' -type f -exec chmod 644 {} \;
This command changes the permissions of all regular files whose names end with .mp3 in the directory tree /var/ftp/mp3. The action is carried out by specifying the statement Note that the command itself should not be quoted; otherwise you get error messages like find: echo "mv ./3bfn rel071204": No such file or directory
which means that If you will be executing over many results, it is more efficient to use a variant of the exec primary that collects filenames up to ARG_MAX and then executes COMMAND with a list of filenames. $ find . -exec COMMAND {} +
This will ensure that filenames with whitespaces are passed to the executed Delete files and directoriesThe Delete empty files and print the names (note that $ find . -empty -delete -print
Delete empty regular files: $ find . -type f -empty -delete
Delete empty directories: $ find . -type d -empty -delete
Delete empty files named 'bad': $ find . -name bad -empty -delete
Warning. — The $ find . -delete # this deletes all in .
Search for a stringThis command will search all files from the /tmp directory tree for a string: $ find /tmp -type f -exec grep 'search string' /dev/null '{}' \+
The $ grep -r 'search string' /tmp
Example of search for "LOG" in jsmith's home directory tree: $ find ~jsmith -exec grep LOG '{}' /dev/null \; -print
/home/jsmith/scripts/errpt.sh:cp $LOG $FIXEDLOGNAME
/home/jsmith/scripts/errpt.sh:cat $LOG
/home/jsmith/scripts/title:USER=$LOGNAME
Example of search for the string "ERROR" in all XML files in the current working directory tree: $ find . -name "*.xml" -exec grep "ERROR" /dev/null '{}' \+
The double quotes (" ") surrounding the search string and single quotes (' ') surrounding the braces are optional in this example, but needed to allow spaces and some other special characters in the string. Note with more complex text (notably in most popular shells descended from `sh` and `csh`) single quotes are often the easier choice, since double quotes do not prevent all special interpretation. Quoting filenames which have English contractions demonstrates how this can get rather complicated, since a string with an apostrophe in it is easier to protect with double quotes: $ find . -name "file-containing-can't" -exec grep "can't" '{}' \; -print
Search for all files owned by a user$ find . -user <userid>
Search in case insensitive modeNote that $ find . -iname 'MyFile*'
If the $ find . -name '[mM][yY][fF][iI][lL][eE]*'
Search files by sizeSearching files whose size is between 100 kilobytes and 500 kilobytes: $ find . -size +100k -a -size -500k
Searching empty files: $ find . -size 0k
Searching non-empty files: $ find . ! -size 0k
Search files by name and size$ find /usr/src ! \( -name '*,v' -o -name '.*,v' \) '{}' \; -print
This command will search the /usr/src directory tree. All files that are of the form '*,v' and '.*,v' are excluded. Important arguments to note are in the tooltip that is displayed on mouse-over. for file in $(find /opt \( -name error_log -o -name 'access_log' -o -name 'ssl_engine_log' -o -name 'rewrite_log' -o -name 'catalina.out' \) -size +300000k -a -size -5000000k); do
cat /dev/null > $file
done
The units should be one of [bckw], 'b' means 512-byte blocks, 'c' means byte, 'k' means kilobytes and 'w' means 2-byte words. The size does not count indirect blocks, but it does count blocks in sparse files that are not actually allocated. Searching files by timeDate ranges can be used to, for example, list files changed since a backup.
Files modified a relative number of days ago:
Example to find all text files in the document folder modified since a week (meaning 7 days): $ find ~/Documents/ -iname "*.txt" -mtime -7
Files modified before or after an absolute date and time:
Example to find all text files last edited in February 2017: $ find ~/Documents/ -iname "*.txt" -newermt 2017-02-01 -not -newermt 2017-03-01
List all text files edited more recently than "document.txt": $ find ~/Documents/ -iname "*.txt" -newer document.txt
Related utilities
See also
References
External linksThe Wikibook Guide to Unix has a page on the topic of: Commands |