how to search for a file from command line code example
Example 1: linux find any file linux
#find a file and print with path
find . -print | grep -i *.txt
Example 2: command line windows find file
dir secret.doc /s /p
#find a file and print with path
find . -print | grep -i *.txt
dir secret.doc /s /p