in reply to Re: Running Perl Scripts on a Mac?
in thread Running Perl Scripts on a Mac?

No this is not correct. Perl -e is for specifying the program text on the command line. Like
perl -e 'print "foo\n";'
For simply running a script
perl script.pl
is correct.