in reply to Running Perl Scripts on a Mac?
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:#!/usr/bin/perl -w
setenv PATH ${PATH}:.
|
|---|