- or download this
perl -d:Modlist=options script.pl
perl -MDevel::Modlist=options script.pl # equivalent
- or download this
#!perl
#use strict; #commented to not pollute %INC
...
eval $begin.$content;
print $@ if $@;
- or download this
perl -c -e "BEGIN{print qq(1-begin\n)};
UNITCHECK {print qq(2-unitcheck\n)};
...
5-main
6-end