Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    
    ...
    else {
        say $opt{input}, ' (quiet)';
    }
    
  2. or download this
    $ pm_getopt_arg.pl ex-post-facto
    Before assigning $opt{input}:
    ex-post-facto (quiet)
    After assigning $opt{input}:
    ex-post-facto (quiet)
    
  3. or download this
    $ pm_getopt_arg.pl -v ex-post-facto
    Before assigning $opt{input}:
    ex-post-facto (verbose)
    After assigning $opt{input}:
    ex-post-facto (verbose)