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