Help for this page

Select Code to Download


  1. or download this
    use Getopt::Long;
    
    ...
        print "$0: Argument required.\n";
        exit 1
    }
    
  2. or download this
    use Pod::Usage;
    
    ...
    if (!@ARGV) {
        pod2usage(-verbose => 0, -message => "$0: argument required\n")
    }