Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Scalar references in Getopt::Long

  • Getopt::Long

It is used less often than the other references but one of the prominent uses is the GetOptions function of Getopt::Long.

use Getopt::Long;
my $file = "default.txt";
my $debug;
GetOptions(
        "file=s" => \$file,
        "debug"  => \$debug,
) or die;