I'm finally getting around to making all the useful bits of ExtUtils::Command available to everybody else. I'm writing a simple wrapper module which makes the functions take their arguments from @_ rather than @ARGV so they're available as normal functions.
ExtUtils::Command provides simple versions of shell commands. mv, cp, rm_rf, touch, etc... so I'm thinking of naming the wrapper module Shell::Command. These are cross-platform versions of shell commands. The runner up is File::Command since these are all commands for manipulating files. Thoughts?
