Bash Rename Spaces in Files
Spaces in files are not easy to work with on linux/unix system architectures. Easiest solution is to replace the space character with underscores.
for f in *\ *; do mv "$f" "${f// /_}"; done
Spaces in files are not easy to work with on linux/unix system architectures. Easiest solution is to replace the space character with underscores.
for f in *\ *; do mv "$f" "${f// /_}"; done