In this article, We will see how to find a directory in Linux with examples. When using linux, running the find command without any options will locate and print a list of every file in and beneath the current directory. $ man find $ man locate As a last remark, the find command is more reliable and efficient for searching files ( or directories) in a Linux system when weighed against the locate command. To get the current working directory use the pwd command. So, this tutorial will help you to use multiples commands that can be used either on a Linux or UNIX like systems to find the largest files or directories on the file systems. In bash, you need to run shopt -s globstar first, and beware that this also traverses symbolic links to directories. For example, your current directory may have 20 subdirectories, and you don’t want to search them all like this: find . starting from the current directory, you could try. Problem: You need to use the Unix/Linux find command to search multiple folders. Specifically, you'd like to search several folders beneath your current location, but not all folders. Find Directory with Case Sensitive. For example if we change the directory to /home/user, pwd will print /home/user as the current working directory: $ cd /home/user $ pwd /home/user . **/target/). The directory /proc represents a virtual filesystem in Linux that contains runtime system information, including process information.There are some numbered directories in the /proc directory, each corresponding to an actual process ID. However, the above command only excluded a single directory located in our current working directory. The find command is one of the most powerful tools in the Linux system administrators arsenal. Same as the above command. The find command in UNIX is a command line utility for walking a file hierarchy. echo **/target or to get one match per line: printf %s\\n **/target This works out of the box in zsh. find. Our sandbox directory tree contains two directories named dir4. It searches for files and directories in a directory hierarchy based on a user given expression and can perform user-specified action on each matched file. The following linux command will list only directory types and can be used to exclude both dir4 directories: $ find . In this example, find command is used to find directory or file in Linux Operating System. How to find a directory in Linux Examples: Syntax: find / -type d -name 'directory_name' Where / means entire… In ksh93, you need to run set -o globstar first.. In a recent Opensource.com article, Lewis Cowles introduced the find command.. find is one of the more powerful and flexible command-line programs in the daily toolbox, so it's worth spending a little more time on it.. At a minimum, find takes a path to find things. This includes all files in all subdirectories of the current directory. It supports searching by file, folder, name, creation date, modification date, owner and permissions. The 'find' command is very useful to search for files in a directory hierarchy and to search for finding large files and directories in your system. find . 1) Using find command. find . explicitly tells find that you want the search to begin in the current directory. For example: find / will find (and print) every file on the system. So, details about the process can be obtained by looking at the directory for that process, which is the path /proc/PID. The find command helps us to look up for files for which we know only the approximate names.In simple words the find command searches for a file in the current working directory and recursively through the subdirectories that matches the given search criteria. Unix/Linux get current working directory. -type d | cut -d/ -f 2 | uniq -c This will list all directories starting from the current one, split each line by the character "/", select field number "2" (each line starts with "./", so your first field would be ".") To find more interesting and advanced usage information, read the man pages of find and locate. -type d \( ! and then only outputs unique lines, and a count how often this unique line appears (-c parameter). If you want to match only directories or symbolic links to directories, add a trailing / (i.e. It can be used to find files and directories and perform subsequent operations on them. -name dir4 \) -print . The "."