Ive just gotten a new computer at work and Im trying to get perl up and running on it. I have a problem with Perl not reading command line input when I execute the script.
I use Win7 and if I call the script from the command line like this:
myscript.pl 1 2 3
It does not receive the supplied 1 2 3, but if I call it like this:
perl myscript.pl 1 2 3
It does.
This first example worked for me before and all of the scripts that we use at work calls perl scripts like that.
assoc .pl
gives me
.pl=Perl
and ftype perl
gives me
perl=C:\Perl64\Bin\perl.exe "%1" %*
Any ideas?