Answers for "remove space in filename and replace with underscore linux"

2

replace filename space with underscore bash

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

Code answers related to "remove space in filename and replace with underscore linux"

Browse Popular Code Answers by Language