findstr wildcard code example
Example 1: findstr current folder
Just specify all posible files names in current directory with regex *:
findstr string_to_search *
Example 2: findstr in all files
Just specify /S to search in all subfolders and match all files with regex *:
findstr /S string_to_search *