in reply to How do I read data passed to perl script
#!/usr/bin/perl use strict; use warnings; if(@ARGV) { print "You entered @ARGV\n"; } [download]