Using find command to search for a particular directory in unix
I was looking for a particular directory today on my computer and I didn't know how to do it. After spending some time searching for it, I found the following command:
find [parent directory] -type d -name [directory name]
find . -type d -name [directory_name] # find everything from your current directory shorter than typing the whole lot.
ReplyDelete