blob: 445a1e30525d1e4eb75a77e4f51b25fdf22deee3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Module Getopt::Long implements an extended getopt function called
GetOptions(). This function implements the POSIX standard for command
line options, with GNU extensions, while still capable of handling the
traditional one-letter options.
In general, this means that command line options can have long names
instead of single letters, and are introduced with a double dash `--'.
Optionally, Getopt::Long can support the traditional bundling of
single-letter command line options.
-Anton
<tobez@FreeBSD.org>
|