in reply to Re^5: Simple Perl file rename
in thread Simple Perl file rename
Thanks a lot toolic,
"wildcard expansion" gave me the hint I needed. To cite from another thread here Your problem is that Unix expands wildcards before passing them to the program. Windows doesn't do this, prefering to let the program carry out it's own wildcard expansion.
Hence I just have to glob the files in my Perl script,
@ARGV= map glob, @ARGV;does the trick.
Thank you very much for your help!
|
|---|