Find (Unix)
   HOME

TheInfoList



OR:

In
Unix-like A Unix-like (sometimes referred to as UN*X or *nix) operating system is one that behaves in a manner similar to a Unix system, although not necessarily conforming to or being certified to any version of the Single UNIX Specification. A Unix-li ...
and some other
operating system An operating system (OS) is system software that manages computer hardware, software resources, and provides common services for computer programs. Time-sharing operating systems schedule tasks for efficient use of the system and may also i ...
s, find is a command-line utility that locates files based on some user-specified criteria and either prints the pathname of each matched object or, if another action is requested, performs that action on each matched object. It initiates a search from a desired starting location and then recursively traverses the nodes (directories) of a hierarchical structure (typically a
tree In botany, a tree is a perennial plant with an elongated stem, or trunk, usually supporting branches and leaves. In some usages, the definition of a tree may be narrower, including only woody plants with secondary growth, plants that are ...
). find can traverse and search through different file systems of partitions belonging to one or more storage devices mounted under the starting directory. The possible search criteria include a
pattern A pattern is a regularity in the world, in human-made design, or in abstract ideas. As such, the elements of a pattern repeat in a predictable manner. A geometric pattern is a kind of pattern formed of geometric shapes and typically repeated li ...
to match against the filename or a time range to match against the modification time or access time of the file. By default, find returns a list of all files below the current
working directory In computing, the working directory of a process is a directory of a hierarchical file system, if any, dynamically associated with each process. It is sometimes called the current working directory (CWD), e.g. the BSD getcwd function, or just c ...
, although users can limit the search to any desired maximum number of levels under the starting directory. The related locate programs use a database of indexed files obtained through find (updated at regular intervals, typically by cron job) to provide a faster method of searching the entire file system for files by name.


History

find appeared in
Version 5 Unix The term "Research Unix" refers to early versions of the Unix operating system for DEC PDP-7, PDP-11, VAX and Interdata 7/32 and 8/32 computers, developed in the Bell Labs Computing Sciences Research Center (CSRC). History The term ''Resear ...
as part of the Programmer's Workbench project, and was written by Dick Haight alongside cpio, which were designed to be used together. The
GNU GNU () is an extensive collection of free software (383 packages as of January 2022), which can be used as an operating system or can be used in parts with other operating systems. The use of the completed GNU tools led to the family of operat ...
find implementation was originally written by Eric Decker. It was later enhanced by David MacKenzie, Jay Plett, and Tim Wood. The command has also been ported to the IBM i operating system.


Find syntax

$ find -Lpath... perand_expression... The two options control how the find command should treat symbolic links. The default behaviour is never to follow symbolic links. The flag will cause the find command to follow symbolic links. The flag will only follow symbolic links while processing the command line arguments. These flags are specified in the POSIX standard for find. A common extension is the flag, for explicitly disabling symlink following. At least one path must precede the expression. find is capable of interpreting wildcards internally and commands must be quoted carefully in order to control shell globbing. Expression elements are separated by the
command-line argument A command-line interpreter or command-line processor uses a command-line interface (CLI) to receive commands from a user in the form of lines of text. This provides a means of setting parameters for the environment, invoking executables and pro ...
boundary, usually represented as whitespace in shell syntax. They are evaluated from left to right. They can contain logical elements such as AND (-and or -a) and OR (-or -o) as well as predicates (filters and actions). GNU find has a large number of additional features not specified by POSIX.


Predicates

Commonly-used primaries include: * -name ''pattern'': tests whether the file name matches the shell-glob pattern given. * -type ''type'': tests whether the file is a given type.
Unix file types The seven standard Unix file types are ''regular'', ''directory'', ''symbolic link'', ''FIFO special'', ''block special'', ''character special'', and ''socket'' as defined by POSIX. Different OS-specific implementations allow more types than what PO ...
accepted include: ** b: block device (buffered); ** c: character device (unbuffered); ** d: '' directory''; ** f: ''
regular file The seven standard Unix file types are ''regular'', ''directory'', ''symbolic link'', ''FIFO special'', ''block special'', ''character special'', and ''socket'' as defined by POSIX. Different OS-specific implementations allow more types than what PO ...
''; ** l:
symbolic link In computing, a symbolic link (also symlink or soft link) is a file whose purpose is to point to a file or directory (called the "target") by specifying a path thereto. Symbolic links are supported by POSIX and by most Unix-like operating syste ...
; ** p:
named pipe In computing, a named pipe (also known as a FIFO for its behavior) is an extension to the traditional pipe concept on Unix and Unix-like systems, and is one of the methods of inter-process communication (IPC). The concept is also found in OS/2 and ...
; ** s:
socket Socket may refer to: Mechanics * Socket wrench, a type of wrench that uses separate, removable sockets to fit different sizes of nuts and bolts * Socket head screw, a screw (or bolt) with a cylindrical head containing a socket into which the hexag ...
; ** D: door. * -print: always returns true; prints the name of the current file plus a newline to the
stdout In computer programming, standard streams are interconnected input and output communication channels between a computer program and its environment when it begins execution. The three input/output (I/O) connections are called standard input (stdin ...
. * -print0: always returns true; prints the name of the current file plus a null character to the
stdout In computer programming, standard streams are interconnected input and output communication channels between a computer program and its environment when it begins execution. The three input/output (I/O) connections are called standard input (stdin ...
. Not required by POSIX. * -exec ''program rgument ...'': always returns true; run a program with the fixed arguments given and the current path of the file. * -exec ''program rgument ...' +: always returns true; run a program with the fixed arguments given and as many paths as possible (up to the maximum command-line size, like xargs). For most implementations, additional occurrences of mean additional copies of the name given (feature not required by POSIX). * -ok ''program rgument ...'': like -exec, but returns true or false depending on whether the program returns 0. If the expression uses none of -print0, -print, -exec, or -ok, find defaults to performing -print if the conditions test as true.


Operators

Operators can be used to enhance the expressions of the find command. Operators are listed in order of decreasing precedence: * ( expr ): forces precedence; * ! expr: true if expr is false; * expr1 expr2 (or expr1 -a expr2: AND. is not evaluated if is false; * expr1 -o expr2: OR. expr2 is not evaluated if is true. $ find . -name 'fileA_*' -o -name 'fileB_*' This command searches the current working directory tree for files whose names start with or . We quote the so that the shell does not expand it. $ 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 ! so that it's not interpreted by the shell as the history substitution character.


POSIX protection from infinite output

Real-world file systems often contain looped structures created through the use of hard or soft links. The POSIX standard requires that


Examples


From 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 Shell may refer to: Architecture and design * Shell (structure), a thin structure ** Concrete shell, a thin shell of concrete, usually with no interior columns or exterior buttresses ** Thin-shell structure Science Biology * Seashell, a hard o ...
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''…


Commands

The previous examples created listings of results because, by default, find executes the -print action. (Note that early versions of the find command had no default action at all; therefore the resulting list of files would be discarded, to the bewilderment of users.) $ 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 find. More complex filenames including characters special to the shell may need to be enclosed in single quotes.


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 -prune action, for a regular file whose name is ''myfile''.


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 errors

If 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 tcsh ( “tee-see-shell”, “tee-shell”, or as “tee see ess aitch”, tcsh) is a Unix shell based on and backward compatible with the C shell (csh). Shell It is essentially the C shell with programmable command-line completion, command ...
user, you cannot redirect stderr without redirecting
stdout In computer programming, standard streams are interconnected input and output communication channels between a computer program and its environment when it begins execution. The three input/output (I/O) connections are called standard input (stdin ...
as well. You can use sh to run the find command to get around this: $ sh -c "find / -name myfile -type f -print 2> /dev/null" An alternate method when using csh or
tcsh tcsh ( “tee-see-shell”, “tee-shell”, or as “tee see ess aitch”, tcsh) is a Unix shell based on and backward compatible with the C shell (csh). Shell It is essentially the C shell with programmable command-line completion, command ...
is to pipe the output from
stdout In computer programming, standard streams are interconnected input and output communication channels between a computer program and its environment when it begins execution. The three input/output (I/O) connections are called standard input (stdin ...
and stderr into a
grep grep is a command-line utility for searching plain-text data sets for lines that match a regular expression. Its name comes from the ed command ''g/re/p'' (''globally search for a regular expression and print matching lines''), which has the sa ...
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 -ls operator prints extended information, and the example finds any regular file whose name ends with either 'jsp' or 'java'. Note that the parentheses are required. In many shells the parentheses must be escaped with a backslash (\( and \)) to prevent them from being interpreted as special shell characters. The -ls operator is not available on all versions of find.


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 -exec
chmod In Unix and Unix-like operating systems, is the command and system call used to change the access permissions and the special mode flags (the ''setuid'', ''setgid'', and ''sticky'' flags) of file system objects ( files and directories). Coll ...
644 \;
in the command. For every regular file whose name ends in .mp3, the command chmod 644 is executed replacing with the name of the file. The semicolon (backslashed to avoid the shell interpreting it as a command separator) indicates the end of the command. Permission 644, usually shown as rw-r--r--, gives the file owner full permission to read and write the file, while other users have read-only access. In some shells, the must be quoted. The trailing "" is customarily quoted with a leading "", but could just as effectively be enclosed in single quotes. 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 find is trying to run a file called '' and failing. 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 and then executes COMMAND with a list of filenames. $ find . -exec COMMAND + This will ensure that filenames with whitespaces are passed to the executed without being split up by the shell.


Delete files and directories

The -delete action is a GNU extension, and using it turns on -depth. So, if you are testing a find command with -print instead of -delete in order to figure out what will happen before going for it, you need to use -depth -print. Delete empty files and print the names (note that -empty is a vendor unique extension from GNU find that may not be available in all find implementations): $ 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 -delete action should be used with conditions such as -empty or -name: $ find . -delete # this deletes all in .


Search for a string

This command will search all files from the /tmp directory tree for a string: $ find /tmp -type f -exec grep 'search string' /dev/null '' \+ The
/dev/null In some operating systems, the null device is a device file that discards all data written to it but reports that the write operation succeeded. This device is called /dev/null on Unix and Unix-like systems, NUL: (see TOPS-20) or NUL on CP/M an ...
argument is used to show the name of the file before the text that is found. Without it, only the text found is printed. (Alternatively, some versions of grep support a flag that forces the file name to be printed.) GNU grep can be used on its own to perform this task: $ 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


Search in case insensitive mode

Note that -iname is not in the standard and may not be supported by all implementations. $ find . -iname 'MyFile*' If the -iname switch is not supported on your system then workaround techniques may be possible such as: $ find . -name ' MyY] FiI] LeE]*' This uses
Perl Perl is a family of two high-level, general-purpose, interpreted, dynamic programming languages. "Perl" refers to Perl 5, but from 2000 to 2019 it also referred to its redesigned "sister language", Perl 6, before the latter's name was offic ...
to build the above command for you (though in general this kind of usage is dangerous, since special characters are not properly quoted before being fed into the standard input of `sh`): $ echo 'MyFile*' , perl -pe 's/( -zA-Z/ L\1\U\1g;s/(.*)/find . -name \1/' , sh


Search files by size

Searching 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 and are excluded. Important arguments to note are in the
tooltip The tooltip, also known as infotip or hint, is a common graphical user interface (GUI) element in which, when hovering over a screen element or component, a text box displays information about that element, such as a description of a button's f ...
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 , '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 time

Date ranges can be used to, for example, list files changed since a backup. * : modification time * : inode change time * : access time Files modified a relative number of days ago: * +
umber Umber is a natural brown earth pigment that contains iron oxide and manganese oxide. In its natural form, it is called raw umber. When calcined, the color becomes warmer and it becomes known as burnt umber. Its name derives from ''terra d'omb ...
= At least this many days ago. * -
umber Umber is a natural brown earth pigment that contains iron oxide and manganese oxide. In its natural form, it is called raw umber. When calcined, the color becomes warmer and it becomes known as burnt umber. Its name derives from ''terra d'omb ...
= Less than so many days ago. *
umber Umber is a natural brown earth pigment that contains iron oxide and manganese oxide. In its natural form, it is called raw umber. When calcined, the color becomes warmer and it becomes known as burnt umber. Its name derives from ''terra d'omb ...
= Exactly this many days ago. * Optionally add -daystart to measure time from the beginning of a day (0 o'clock) rather than the last 24 hours. 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: * -newermt YYYY-MM-DD: Last modified after date * -not -newermt YYYY-MM-DD: Last modified before date Example to find all text files last edited in February 2017: $ find ~/Documents/ -iname "*.txt" -newermt 2017-02-01 -not -newermt 2017-03-01 *-newer ile/code>: More recently modified than specified file. ** -cnewer: Same with inode change time. ** -anewer: Same with access time. ** Also prependable with -not for inverse results or range. List all text files edited more recently than "document.txt": $ find ~/Documents/ -iname "*.txt" -newer document.txt


Related utilities

* locate is a Unix search tool that searches a prebuilt database of files instead of directory trees of a file system. This is faster than find but less accurate because the database may not be up-to-date. *
grep grep is a command-line utility for searching plain-text data sets for lines that match a regular expression. Its name comes from the ed command ''g/re/p'' (''globally search for a regular expression and print matching lines''), which has the sa ...
is a command-line utility for searching plain-text data sets for lines matching a regular expression and by default reporting matching lines on
standard output In computer programming, standard streams are interconnected input and output communication channels between a computer program and its environment when it begins execution. The three input/output (I/O) connections are called standard input (stdin ...
. *
tree In botany, a tree is a perennial plant with an elongated stem, or trunk, usually supporting branches and leaves. In some usages, the definition of a tree may be narrower, including only woody plants with secondary growth, plants that are ...
is a command-line utility that recursively lists files found in a directory tree, indenting the filenames according to their position in the file hierarchy. * GNU Find Utilities (also known as findutils) is a GNU package which contains implementations of the tools find and xargs. * BusyBox is a utility that provides several stripped-down Unix tools in a single executable file, intended for embedded operating systems with very limited resources. It also provides a version of find. * dir has the /s option that recursively searches for files or directories. *
Plan 9 from Bell Labs Plan 9 from Bell Labs is a distributed operating system which originated from the Computing Science Research Center (CSRC) at Bell Labs in the mid-1980s and built on UNIX concepts first developed there in the late 1960s. Since 2000, Plan 9 has be ...
uses two utilities to replace : a that only walks the tree and prints the names and a that only filters (like grep) by evaluating expressions in the form of a shell script. Arbitrary filters can be used via pipes. The commands are not part of
Plan 9 from User Space Plan 9 from User Space (also plan9port or p9p) is a port of many Plan 9 from Bell Labs libraries and applications to Unix-like operating systems. Currently it has been tested on a variety of operating systems including: Linux, macOS, FreeBSD, Net ...
, so Google's Benjamin Barenblat has a ported version to POSIX systems available through GitHub. * is a simple alternative to written in the
Rust programming language Rust is a multi-paradigm, general-purpose programming language. Rust emphasizes performance, type safety, and concurrency. Rust enforces memory safety—that is, that all references point to valid memory—without requiring the use of a garb ...
.


See also

* mdfind, a similar utility that utilizes metadata for
macOS macOS (; previously OS X and originally Mac OS X) is a Unix operating system developed and marketed by Apple Inc. since 2001. It is the primary operating system for Apple's Mac computers. Within the market of desktop and lapt ...
and Darwin *
List of Unix commands This is a list of Unix commands as specified by IEEE Std 1003.1-2008, which is part of the Single UNIX Specification (SUS). These commands can be found on Unix operating systems and most Unix-like operating systems. List See also * List of G ...
*
List of DOS commands This article presents a list of commands used by DOS operating systems, especially as used on x86-based IBM PC compatibles (PCs). Other DOS operating systems are not part of the scope of this list. In DOS, many standard system commands were pro ...
*
Filter (higher-order function) In functional programming, filter is a higher-order function that processes a data structure (usually a list) in some order to produce a new data structure containing exactly those elements of the original data structure for which a given predicate ...
* find (Windows), a DOS and Windows command that is very different from Unix find * forfiles, a Windows command that finds files by attribute, similar to Unix find *
grep grep is a command-line utility for searching plain-text data sets for lines that match a regular expression. Its name comes from the ed command ''g/re/p'' (''globally search for a regular expression and print matching lines''), which has the sa ...
, a Unix command that finds text matching a pattern, similar to Windows find


References


External links


Official webpage for GNU find

Command find – 25 practical examples
{{Unix commands Information retrieval systems Standard Unix programs Unix SUS2008 utilities IBM i Qshell commands