Help for this page

Select Code to Download


  1. or download this
    $lynx -dump "http://www.perlmonks.com/index.pl?node_id=371944&displayt
    +ype=displaycode" | perl - one two
    
    hello
    one two
    
  2. or download this
    perl -MLWP::Simple -e "getprint 'http://www.perlmonks.com/index.pl?nod
    +e_id=371945&displaytype=displaycode'"  | perl - one two
    hello
    one two
    
  3. or download this
    #!/usr/local/bin/perl
    print "hello\n";
    print join (' ',@ARGV);
    print "\n";