Configuration Information [Automatically generated, do
not change]:
Machine: i386
OS: linux-gnu
Compiler: i386-redhat-linux-gcc
Compilation CFLAGS: -DPROGRAM='bash'
-DCONF_HOSTTYPE='i386' -DCONF_OSTYPE='linux-gnu
' -DCONF_MACHTYPE='i386-redhat-linux-gnu'
-DCONF_VENDOR='redhat' -DLOCALEDIR='/usr/sh
I'd like to write a little command-line tool that cleans up
filenames by replacing escaped characters with unescaped
equivalents (e.g., replace ' ' with '_'), or by deleting
escaped characters altogether. I could approximate this
manually -- e.g.,
rename s/\;\'\"\ //g *
-- but that's a hack. I'd