Help for this page

Select Code to Download


  1. or download this
    #!/usr/local/bin/perl -w
    use Getopt::Long;
    ...
    if ($goodbye) {
        print "Goodbye!\n";
    }
    
  2. or download this
    # use full options
    > perl test.pl --hello --goodbye
    Hello world
    Goodbye!
    
  3. or download this
    # use abbreviation 
    > perl test.pl -h
    Hello world