

cpp, so you can search it like this: find. One of the most common use of the find command is to find files of a specific type or should I say a specific extension.įor example, let's say, you want to search for all the C++ files in the current directories. Screenshot of above three examples: Search files by their extension (important) You can run a case-insensitive search with the given name by using -iname instead of -name. In the previous file, look for directories only: :~/Examples$ find -type d -name mystuffīy default, the find command is case sensitive. If you only want to search for directories, specify type -d: find. Take the previous example and find for files only: :~/Examples$ find -type f -name mystuff The order of type and name does not matter. If you only want to look for files, specify file type -f: find. The below example finds both file and directories named mystuff: :~/Examples$ find -name mystuff Since there is no file type mentioned, it searches for both files and directories with the given name. You can search for files and directories by its name: find. Let's see some practical examples of the find command. The option -type f asks it to look for files only. This command will run a search in the current directory and its subdirectories to find a file (not directory) named myfile. If you want to find files with name matching a pattern, expression in the pattern. If you want to find a file by its name, expression is the file name.
#GREP LINUX COMMAND EXAMPLES HOW TO#
But before that, let me show you its syntax and how to use it. I am going to discuss some of the most common examples of the find command that you are likely to use. Instead of being afraid of it, you should embrace its power.
#GREP LINUX COMMAND EXAMPLES SOFTWARE#
It is impossible for a sysadmin or software developer to avoid the find command while working in the command line. It is also one of the most extensive commands with over 50 options and this makes it a bit confusing, specially when it is paired with the exec or xargs command. The find command is used for searching for files and directories in the Linux command line.įind is one of the most powerful and frequently used commands.
