Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
      }
    } @ARGV;
    print Dumper(\%hARGV);
    
  2. or download this
    use strict;
    use warnings;
    ...
    $hARGV{files}=\@aFiles if @aFiles; # <== _now_ put the files in the ha
    +sh
    
    print Dumper(\%hARGV);
    
  3. or download this
    use strict;
    use warnings;
    ...
    $hARGV{files}=\@aFiles if @aFiles;
    
    print Dumper(\%hARGV);