linux command to find a file in all subdirectories code example
Example 1: linux search all directories for file
find / -iname 'book1*'
Example 2: list all files in a directory and subdirectory linux
find . -type f -follow -print
find / -iname 'book1*'
find . -type f -follow -print