Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    my $argument_1 = shift;
    die "Invalid input" unless $argument_1;
    
  2. or download this
    #!/usr/bin/perl
    use Getopt::Std;
    getopt('oDI');
    print "\nOption o = $opt_o";