Debug School

rakesh kumar
rakesh kumar

Posted on • Updated on

Linux:How to find a folder in Linux using the command line

how-to-find-a-folder-in-linux-using-the-command-line

linux-tutorials-commands

Image description

Image description

# find / -type d -name "etc"
Enter fullscreen mode Exit fullscreen mode

OR

$ sudo find / -type d -name "etc"
Enter fullscreen mode Exit fullscreen mode

OR

$ sudo find / -type d -iname "etc"
Enter fullscreen mode Exit fullscreen mode

Top comments (0)