- or download this
/share/linux86-64/bin
/share/linux86/bin
...
/share/aix/bin
# etc.
/share/common/perl/lib
- or download this
#!/bin/sh
eval 'exec perl -S "$0" "$@"'
if 0; # this line keeps it from being seen by perl.
- 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();