Help for this page

Select Code to Download


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