Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: #! question

by VSarkiss (Monsignor)
on Jan 17, 2002 at 03:57 UTC ( [id://139390]=note: print w/replies, xml ) Need Help??


in reply to #! question

This is actually for systems that don't support shebang execution.

If you look very carefully, you'll notice that the eval string is a shell command, not Perl. On systems that don't have shebang, this gets handed to a shell, which hopefully has Perl in its PATH. That shell then exec's perl -S script args where the name was $0 and the args, if any, came from the ${1+"$@"}.

Now, when it does get handed to Perl, the if 0 on the next line stops it from doing the eval (of course, the shell is line-oriented and never sees the if!) This would also happen if the system started supporting shebang execution and the file was handed to Perl directly in the first place.

Nasty but effective, no?

Replies are listed 'Best First'.
Re: Re: #! question
by rob_au (Abbot) on Jan 17, 2002 at 04:42 UTC
    Just in addition to VSarkiss' excellent explanation, I thought I would just add that this is discussed in the perlrun man page, specifically under the -S switch.

     

    perl -e 's&&rob@cowsnet.com.au&&&split/[@.]/&&s&.com.&_&&&print'

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://139390]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (5)
As of 2024-04-25 14:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found