Initial commit
This commit is contained in:
Executable
+7
@@ -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"' _ {} \;
|
||||
|
||||
Reference in New Issue
Block a user