Help for this page

Select Code to Download


  1. or download this
    my %file = (
        in   => 'switches.txt',
        );
    ...
        }
    print ("  Specified target names all valid.\n");
    
  2. or download this
    use Getopt::Long;
    GetOptions( 'infile|i=s'  => \$opt_infile, );
    if (defined $opt_infile) {
    ...
        }
    print ("  Specified target names all valid.\n");