Answers for "how to replace space with underscore in bash for filenames"

4

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 space with underscore command line in file name

@echo off
Setlocal enabledelayedexpansion

Set "Pattern= "
Set "Replace=_"

For %%a in (*.exe) Do (
    Set "File=%%~a"
    Ren "%%a" "!File:%Pattern%=%Replace%!"
)

Pause&Exit
Posted by: Guest on October-26-2021

Code answers related to "how to replace space with underscore in bash for filenames"

Browse Popular Code Answers by Language