Files
txt2apkg/GoetheVerlag/mp3/008/rename.sh
2025-06-18 20:07:33 +02:00

7 lines
54 B
Bash
Executable File

#!/bin/bash
for i in *
do
mv "$i" "${i// /_}"
done