Help for this page

Select Code to Download


  1. or download this
    /share/linux86-64/bin
    /share/linux86/bin
    ...
    /share/aix/bin
    # etc.
    /share/common/perl/lib
    
  2. or download this
    #!/bin/sh
    eval 'exec perl -S "$0" "$@"'
        if 0; # this line keeps it from being seen by perl.
    
  3. or download this
    #!/bin/sh
    eval 'exec perl -S "$0" "$@"'
    ...
    my $app = My::App->new();
    $app->parse_args(@ARGV); # passing in @ARGV is recommended but not req
    +uired
    exit $app->run();