I have the following Perl script. I am trying to run it in Windows 7 using ActivePerl:
#!c:\Perl64\bin\perl.exe -w
use strict;
my $mp3splt_exe = 'c:\Program Files (x86)\mp3splt\mp3splt.exe';
my $mp3splt_args = '-o "@n @f" -g "r%[@o @N]" -f -t 6.0';
print @ARGV;
my $filename = $ARGV[0];
print "$mp3splt_exe $mp3splt_args $filename\n";
(as you can see, I am trying to create a wrapper for mp3splt :-) )
When I run it like this:
C:\Program Files (x86)\mp3splt>run_mp3splt.pl a
I get this:
Use of uninitialized value $filename in concatenation (.) or string at C:\Program Files (x86)\mp3splt\run_mp3splt.pl line 12.
c:\Program Files (x86)\mp3splt\mp3splt.exe -o "@n @f" -g "r%[@o @N]" -f -t 6.0
So, first of all, when I print @ARGV
, nothing gets printed, and second of all, when I assign $filename = $ARGV[0]
, $filename
is undef
, so I get the warning.
So... what am I doing wrong? Why isn't the commandline parameter being passed to the script?
As others have pointed out
perl blah.pl asdf
works, whileblah.pl asdf
fails. This is because when you run the perl script directly, Windows realizes it must call perl, and uses the ruleperl "%1"
, which only passes the script name to perl, not any of the parameters.To fix this, you have to tell windows to use the rule
perl "%1" %*
How to do that can be a little tedious:
Option 1
According to perlmonks, you should be able to use
assoc
andftype
on the commandline. In fact, if you typehelp ftype
, it tells you how to setup perl:To run
assoc
requires cmd run as administrator on Window 7.However, this didn't work for me. Windows ignored the association. I had to modify the registry. This may be due to the misguided advice to run the
Default Programs
utility on Win 7, which lets you specify the program to use for given file extensions. Unlike XP, this will not allow you to specify multiple command options (to be used in the right-click menu) -- it will only allow you to specify the program that is used when you double-click on a file (or run foo.pl from commandline).Option 2
Modify the registry:
HKEY_CLASSES_ROOT
If you've used the assoc/ftype commands, you may have entries for
perl
orPerlScript
. As I said earlier, these will be ignored. Look forpl_auto_file
, and drill down to thecommand
:Here the
(Default)
should be set to something like:"C:\Perl\bin\perl.exe" "%1"
Add the missing
%*
on the end of that and you should be good to go:"C:\Perl\bin\perl.exe" "%1" %*
No reboot necessary.
Option 3
If you're lazy and trusting, you can try using this as a reg file, and importing it into your registry:
This should be sufficient to make
blah.pl asdf
work.I've had the problem that if I executed on Win7:
the program got the parameters (in @ARGV) correctly, but if I executed:
the program would NOT receive the parameters.
I searched the web for a solution and soon found that it was no ActiveState perl problem but more likely a filetype association problem in Windows (Win7), (thanks to the PerlMonks website).
However all solutions changing the
and the
did not solve the puzzle for me. I did notice that the assoc .pl was not used somehow because if I added assoc .plx=Perl and renamed my program to myprog.plx
worked perfectly !
So then I read this problem on the Microsoft forum were the Win7 "feature" Default Programs was mentioned, I found the solution to my problem:
Open Default Programs by clicking the Start button , and then click "Default Programs".
Select "Associate a file type or protocol with a program" and select ".pl" and click on "Change program". There was already a Perl Command Line Interpreter specified as Recommended Programs but instead I clicked on Browse and selected the Perl.exe myself. After closing the "Associate a file type ..." screen,
executed like a charm, all parameters were correctly retrieved by my program.
Hope that helps...
I'm pretty sure Windows 7 doesn't understand the shebang line. What happens if you run this with
perl run_mp3splt.pl a
?Perl ARGV problem solution in Windows 8.1:
No re-boot needed.