Ganti ruang nama file dengan bash underscore

for file in *; do mv "$file" `echo $file | tr ' ' '_'` ; done
Disgusted Dog