Let's say I have a list of strings. I want to find files with filenames starting with these string.
Example,
Strings: filename.could.start.with.this.restoffilename a.file.could.have.this.at.beginning.restoffilename
This list of strings can be an arbitrary number (obviously much more than just two as above).
I want to use a bash script for this and only use what I consider basic linux applications (ls, grep, sed, find etc.), so no python, perl, ruby or other such languages.