Windows/Dos question here.<br><br>I have a perl script that takes arguments from the command line. In the Bash I can just do &quot;myscript.pl *&quot; which returns a list of all files in that directory to my script. In Dos, this script works, but you have to mention each file explicitly: &quot;myscript.pl file1 file2 file3&quot;. If I do &quot;myscript.pl *&quot; it will actually look for a file called &quot;*&quot;, which it can&#39;t find, and quits.<br>
<br>How can I use wildcards in Dos with this? I know it can be done as &quot;dir *.txt&quot; works as expected.<br><br>Thanks in advance,<br>Josh<br>