Help for this page

Select Code to Download


  1. or download this
    $ perl -e "blahblahblah"
    $
    
  2. or download this
    $ perl -we "Net::SSH2"
    Useless use of a constant ("Net::SSH2") in void context at -e line 1.
    $ perl -wMstrict -e "Net::SSH2"
    Bareword "Net::SSH2" not allowed while "strict subs" in use at -e line
    + 1.
    Execution of -e aborted due to compilation errors.
    
  3. or download this
    $ perl -wMstrict -le 'use Data::Dumper; print $Data::Dumper::VERSION'
    2.167