Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Use, Exporter, I'm Dizzy.

by johngg (Canon)
on Feb 07, 2007 at 19:24 UTC ( [id://598861]=note: print w/replies, xml ) Need Help??


in reply to Use, Exporter, I'm Dizzy.

Complete side issue, your

$ perl -e 'map {print $_,"\n"} @INC'

could be more simply written as

$ perl -le 'print for @INC'

Cheers,

JohnGG

Replies are listed 'Best First'.
Re^2: Use, Exporter, I'm Dizzy.
by Anonymous Monk on Feb 07, 2007 at 19:36 UTC

    There are also a number of intermediary solutions.

    perl -e 'map {print $_,"\n"} @INC' perl -e 'print map "$_\n", @INC' perl -e 'print "$_\n" for @INC' perl -le '$,=$\; print @INC' perl -le 'print for @INC'

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (5)
As of 2024-03-28 17:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found