http://qs321.pair.com?node_id=829954


in reply to Re^2: rename 0.3 - now with two extra cupholders
in thread rename 0.3 - now with two extra cupholders

... or alternatively

@ARGV = map { glob $_ } @ARGV;

or, if you want sane whitespace handling,

use File::Glob qw(bsd_glob); @ARGV = map { bsd_glob $_ } @ARGV;

, optionally in a BEGIN block. But now, actually looking at the source of Win32::Autoglob, that's just what the module does. Thanks for pointing it out to me :).