Help for this page

Select Code to Download


  1. or download this
        getStuff configs --force=all --out out.txt -v -a
    
  2. or download this
        use Getopt::Long;
        use Data::Dumper;
    ...
            print Dumper \%opts;
            print Dumper \@ARGV;
        }
    
  3. or download this
    $VAR1 = {
              'out' => 'out.txt',
    ...
    $VAR1 = [
              'configs'
            ];
    
  4. or download this
        GetOptions(\my %opts, "force=s", "out", "v", "a");
    
  5. or download this
    $VAR1 = {
              'out' => 1,
    ...
              'configs',
              'out.txt'
            ];