Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^3: Universal Require

by blazar (Canon)
on Apr 15, 2007 at 10:32 UTC ( [id://610176]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $content = get $url;
    
    changing to 
    
    my $content = get($url);
    
  2. or download this
    $ perl -MLWP::Simple -e 'print get "http://blazar.perlmonk.org/"'
    <?xml version="1.0" encoding="iso-8859-1"?>
    ...
    <p>No, there&#39;s nothing here yet. You&#39;ll find something more, b
    +ut not too much,
    <a href="http://mosquito.scumm.it/~blazar/">here</a>.</p>
    </body></html>
    
  3. or download this
    $ perl -MO=Deparse,-p -MLWP::Simple -e 'print get "http://blazar.perlm
    +onk.org/"'
    use LWP::Simple;
    print(get('http://blazar.perlmonk.org/'));
    -e syntax OK
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (7)
As of 2024-04-23 07:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found