/usr/share/doc/libgetopt-argvfile-perl/examples/defaultUse.pl is in libgetopt-argvfile-perl 1.11-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | # This demo is part of the Getopt::ArgvFile distribution.
# It demonstrates the standard use of the module.
# Jochen Stenzel, 2007.
# pragmata
use strict;
# ===> load Getopt::Argv file to process option files,
# no automatic processing of default option files,
# @ARGV is adapted
use Getopt::ArgvFile;
# load an options processing module of your choice
use Getopt::Long;
# process options
my %options;
GetOptions(
\%options,
'example',
'demo',
);
|