- or download this
$ cat t.pl
#!/usr/bin/perl
print "foo=$foo\n";
$ perl t.pl -foo=bar
foo=
- or download this
$ cat t.pl
#!/usr/bin/perl -s
print "foo=$foo\n";
$ perl -s t.pl -foo=bar
foo=bar
- or download this
$ cat t.pl
#!/usr/bin/perl -s
print "foo=$foo\n";
$ perl t.pl -foo=bar
foo=1