http://www.perlmonks.org?node_id=985206


in reply to Re^2: How to find what options are used for Getopt::Long
in thread How to find what options are used for Getopt::Long

#!/usr/bin/perl -- my @argv = @ARGV; ... your code here ... use Data::Dump; dd { before => \@argv, after => \@ARGV };