Give a single command to perform a casesensitive search for
Give a single command to perform a case-sensitive search for a file called test1.txt that is in the home directory. Note that you might not be executing this command from within the home directory.
Solution
find /path/to/folder -name \'*bat*\'
indstr /n /i /c:\"test1.txt\"
find / -iname \'test1.txt\'
