Initial commit

This commit is contained in:
2024-04-07 20:56:24 +02:00
commit ff09a81c76
2 changed files with 20 additions and 0 deletions
Executable
+7
View File
@@ -0,0 +1,7 @@
#!/bin/bash
mkdir -p flac
mv *.flac flac/
# call mp3convert on every file inside the flac directory
find flac -name '*.flac' -exec bash -c 'mp3convert "$1"' _ {} \;