linux find directory of command code example
Example 1: terminal how to find a directory
find . -type d | grep DIRNAME
Example 2: linux search all directories for file
find / -iname 'book1*'
find . -type d | grep DIRNAME
find / -iname 'book1*'