A simple command to change filename. It’s not recursive, it’s quite fast and simple.


for f in *\ *; do mv "$f" "${f// /_}"; done