in reply to running /bin/sh perl file.pl

G'day aknipp,

"I thought something like bash `/usr/bin/iwgethome`/iw-perl/bin/iwperl perlfile - which looks promising, but I get an error like this:

iwperl: cannot execute binary file

Which tells me it is picking up the 1st parameter as the script name, but in this case the 1st parameter is perl not the script."

Actually, that tells me that perlfile is a binary file which iwperl cannot execute. (What happened to file.pl?)

I don't have any problem doing (similar to) what you have there if I specify a script:

$ cat file.pl print "Hello, world!\n"; $ which perl /Users/ken/perl5/perlbrew/perls/perl-5.14.2_WITH_THREADS/bin/perl $ `echo $HOME`/perl5/perlbrew/perls/perl-5.14.2_WITH_THREADS/bin/perl +file.pl Hello, world!

-- Ken