Answers for "linux change spaces underscores"

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
0

replace spaces in file names with underscores windows

Get-ChildItem C:NewFolder -Directory -Recurse | Rename-Item  -NewName {$_.Name -replace '_',' '}
Posted by: Guest on March-21-2021

Code answers related to "linux change spaces underscores"

Browse Popular Code Answers by Language