find all files code example
Example 1: linux search all directories for file
find / -iname 'book1*'
Example 2: find by name linux
# dot is curr dir
find . -name "*.txt"
Example 3: findstr in all files
Just specify /S to search in all subfolders and match all files with regex *:
findstr /S string_to_search *