in reply to Running Perl Scripts on a Mac?

If you want to run scripts without typing the 'perl' part, make sure the first line of your script is a proper shebang line like so:
#!/usr/bin/perl -w
Also add dot '.' to your path and make the script executable. With dot in your path, you can run any executable from the directory you are in. To add dot to your path with the tcsh shell, add this to your .cshrc file:
setenv PATH ${PATH}:.