How to find a catalog?

Type Linux - Ubuntu. I created a directory programmatically using a java application on a Linux web server. I do not know where the directory is, but I know its name. So how to search for it starting from the root directory?

+4
source share
1 answer
find / -type d -name 'name-of-the-directory' 
+5
source

Source: https://habr.com/ru/post/1369435/


All Articles