in reply to Problem with perl interpreter

You've most likely got an issue with your line endings. What would be happening is that you've got a carriage return at the end of the first line, so *nix is looking for a binary at "/usr/bin/perl\r" instead of the correct "/usr/bin/perl". Try running this one-liner on the file by replacing 'foobar.qux' with the name of your file, and then try running the perl script again.

$ perl -pi -e 's/\r\n/\n/;' foobar.qux

Replies are listed 'Best First'.
Re^2: Problem with perl interpretor
by funkymonkey (Initiate) on Jan 09, 2005 at 05:07 UTC
    Worked great. Thanks! Since I didn't it locally on the system, must have *somehow* grabbed a carriage return when transfering it from the jumpdrive to the disk.

    Thanks again.