in reply to execut perl script for multiple input folders
An easy approach to globbing is to use File::Glob::bsd_glob:
use File::Glob qw( bsd_glob ); # Wildcard-expand @ARGV: BEGIN { @ARGV= map { bsd_glob $_ } @ARGV } [download]