I have a bunch of files in a directory with 'spaces' in the filename.
How do I perform a bulk rename of all filenames with 'spaces' and replace them with an '_' char.
Looking at the other solutions, I've tried the following command w/o success:
find . -name '* *' -exec rename ' ' '_' {} +
find: rename: No such file or directory
rename(1), which is normally distributed as part of perl. – TRS-80 Apr 16 '10 at 8:31