Answers for "replace all spaces with underscore using sed"

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 "replace all spaces with underscore using sed"

Browse Popular Code Answers by Language