Showing posts with label 1-liner. Show all posts
Showing posts with label 1-liner. Show all posts

Thursday, 28 March 2019

1-liner bash to rename spaces in filenames or folder names

Source: https://stackoverflow.com/questions/2709458/how-to-replace-spaces-in-file-names-using-a-bash-script
#non-recursive method
for f in *\ *; do mv "$f" "${f// /_}"; done

Datanami, Woe be me