When using the command line to upload files I know I can use this:
   *.jpg
as a valid wild card/paramater to upload all .jpg files in a specific folder.
I should be able to do something like this as well:
   IS_*.jpg
and this will upload all files starting with IS_  with the extension of .jpg.
My question is can I use a wild card to upload files that will combine BOTH sets of wild cards listed below:
   IS_*.jpg
OR
   PS_*.jpg
so that I will get ALL files starting with IS_  AND PS_  ?
If so how would I set that up?