in reply to Re: /usr/bin/env perl - query
in thread /usr/bin/env perl - query

And rightly so, assuming you're on Unix.

On Unix, the first two bytes of an executable are "magical" - they tell the kernel what kind of executable it is. It may be a binary (depending on the OS, it may be able to run different styles of binaries), or it may be something that's to be fed to an interpreter. The magical bytes to signal that are 0x23 0x21, which in ASCII looks like "#!". Then the kernel takes the rest of the line (up to the next horizontal whitespace, or newline) as the name of the interpreter to run, and then feed the program as its input.

So, if your program starts with

#! perl
and execute the program, the kernel will try to execute "perl" (assuming your OS skips leading whitespace; your program is more portable if it doesn't have whitespace after the #!). But the kernel isn't going to peek in your environment settings, and won't try all the directories in your $PATH. So it won't find "perl".