Answers for "bash replace spaces with underscores in filenames with sed"

2

replace filename space with underscore bash

for file in *; do mv "$file" `echo $file | tr ' ' '_'` ; done
Posted by: Guest on March-02-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 "bash replace spaces with underscores in filenames with sed"

Browse Popular Code Answers by Language