Skip to content

cyberspyde/cyberfx

Repository files navigation

Script to rename all the files inside the current folder which has spaces to underscores recursively.

find . -depth -name '* *' -exec bash -c 'mv -v "$1" "${1// /_}"' _ {} \;