diff options
author | Larry Wall <lwall@netlabs.com> | 1995-03-12 22:32:14 -0800 |
---|---|---|
committer | Larry Wall <lwall@netlabs.com> | 1995-03-12 22:32:14 -0800 |
commit | 748a93069b3d16374a9859d1456065dd3ae11394 (patch) | |
tree | 308ca14de9933a313dceacce8be77db67d9368c7 /pod/modpods/Getopt.pod | |
parent | fec02dd38faf8f83471b031857d89cb76fea1ca0 (diff) | |
download | perl-748a93069b3d16374a9859d1456065dd3ae11394.tar.gz |
Perl 5.001perl-5.001
[See the Changes file for a list of changes]
Diffstat (limited to 'pod/modpods/Getopt.pod')
-rw-r--r-- | pod/modpods/Getopt.pod | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pod/modpods/Getopt.pod b/pod/modpods/Getopt.pod index 2f607257ba..9cda9ec03f 100644 --- a/pod/modpods/Getopt.pod +++ b/pod/modpods/Getopt.pod @@ -10,7 +10,8 @@ GetOptions - extended getopt processing use Getopt::Std; getopt('oDI'); # -o, -D & -I take arg. Sets opt_* as a side effect. - getopts('oif:'); # likewise, but all of them + getopts('oif:'); # -o & -i are boolean flags, -f takes an argument + # Sets opt_* as a side effect. use Getopt::Long; $result = GetOptions (...option-descriptions...); |