At 7:12 PM -0500 1/9/2002, Anthony Mason wrote: >Hello, > >[localhost:~] anthonym% ./mac_perl.pl >../mac_perl.pl: Command not found. >[localhost:~] anthonym% > > >I cannot get my Perl code to execute. Do you have any idea what I'm >doing wrong? Here is the file source:
It looks like you've got the wrong line endings (Carriage Returns instead of Line Feeds). Use: % perl -pi -e 's/\015/\012/g' mac_perl.pl
