http://www.perlmonks.org?node_id=764583


in reply to Re^4: multiple file operations using perl one-liners
in thread multiple file operations using perl one-liners

TMTOWTDI    ;-)

perl -e'system "zip", "-d", $_, "*exe*" for <*/*/old.zip>'

Replies are listed 'Best First'.
Re^6: multiple file operations using perl one-liners
by ikegami (Patriarch) on May 18, 2009 at 07:10 UTC
    That fails for paths with spaces. That may not be a problem for the OP, but it would be for me.