To search in Linux for a file that contains a string, one would usually use:
grep "search string" *
But what if you instead want to pass a file (such as mySearchString.txt, which obviously would contain the string "search string" - without the double quotes... unless they or single quotes are required?) to grep for it to use to search for that string?
grep <mySearchString.txt *
Doesn't seem to work...