Answers for "bash rename file replace space with underscore"

3

replace filename space with underscore bash

for file in *; do mv "$file" `echo $file | tr ' ' '_'` ; done
Posted by: Guest on March-02-2021
1

linux replace spaces with underscore from all files in directory

find . -type f -name "* *" -exec bash -c 'mv "$0" "${0// /_}"' {} ;
Posted by: Guest on October-18-2021

Code answers related to "bash rename file replace space with underscore"

Browse Popular Code Answers by Language