Linux - Replacing spaces in the file names
command, filenames, linux, replace, spaces
Solution
This should do it:
for file in *; do mv "$file" `echo $file | tr ' ' '_'` ; done
Problem
I have a number of files in a folder, and I want to replace every space character in all file names with underscores. How can I achieve this?