in reply to Using GetOpts::STD
use Getopt::Std; my %opts; getopt('i',\%opts); die "usage $0 -i file" unless $opts{i} and -f $opts{i}; ... [download]