It supports searching by file, folder, name, creation date, modification date, owner and permissions. 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 . Same as the above command. -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 ".") The find command in UNIX is a command line utility for walking a file hierarchy. Specifically, you'd like to search several folders beneath your current location, but not all folders. However, the above command only excluded a single directory located in our current working directory. 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. find . explicitly tells find that you want the search to begin in the current directory. To get the current working directory use the pwd command. The find command is one of the most powerful tools in the Linux system administrators arsenal. It can be used to find files and directories and perform subsequent operations on them. The "." Our sandbox directory tree contains two directories named dir4. In bash, you need to run shopt -s globstar first, and beware that this also traverses symbolic links to directories. This includes all files in all subdirectories of the current directory. and then only outputs unique lines, and a count how often this unique line appears (-c parameter). starting from the current directory, you could try. Unix/Linux get current working directory. In this article, We will see how to find a directory in Linux with examples. Problem: You need to use the Unix/Linux find command to search multiple folders. 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. find . For example: find / will find (and print) every file on the system. For example, your current directory may have 20 subdirectories, and you don’t want to search them all like this: find . 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. **/target/). The following linux command will list only directory types and can be used to exclude both dir4 directories: $ find . find. If you want to match only directories or symbolic links to directories, add a trailing / (i.e. -name dir4 \) -print . In ksh93, you need to run set -o globstar first.. 1) Using find command. How to find a directory in Linux Examples: Syntax: find / -type d -name 'directory_name' Where / means entire… Find Directory with Case Sensitive. 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. -type d \( ! echo **/target or to get one match per line: printf %s\\n **/target This works out of the box in zsh. 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. To find more interesting and advanced usage information, read the man pages of find and locate. In this example, find command is used to find directory or file in Linux Operating System. 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. 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. So, details about the process can be obtained by looking at the directory for that process, which is the path /proc/PID.