Thursday, September 03, 2015

replace - Linux - Replacing spaces in the file names - Stack Overflow

replace - Linux - Replacing spaces in the file names - Stack Overflow



for file in *; do mv "$file" `echo $file | tr ' ' '_'` ; done

No comments:

Post a Comment