how to find all directories in linux code example
Example 1: linux search all directories for file
find / -iname 'book1*'
Example 2: linux commad to show directories
// it will show all directories or folders not files...
ls -d */
find / -iname 'book1*'
// it will show all directories or folders not files...
ls -d */