Help for this page

Select Code to Download


  1. or download this
    sub help { # print basic help menu and exit.
      print "vpimport\n";
    ...
    
      exit(0);
    }
    
  2. or download this
    sub version { #print version number and exit
      print "$VERSION\n";
      exit(0);
    }
    
  3. or download this
    my $result = GetOptions
      (
    ...
       "live" => \$useLive, # Are we using the live database?
       "no-create" => \$no_create, # Don't create new items.
      );