Viele neue mp3s

This commit is contained in:
2025-06-22 19:34:06 +02:00
parent 9e6e3636d7
commit 741643fcf8
963 changed files with 734 additions and 1283 deletions

6
GoetheVerlag/mp3/100/rename.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
for i in *
do
mv "$i" "${i// /_}"
done

View File

@@ -0,0 +1,6 @@
#!/bin/bash
for f in *; do
new=$(echo "$f" | tr '[:upper:]' '[:lower:]')
mv "$f" "$new"
done