11 lines
202 B
Plaintext
11 lines
202 B
Plaintext
#!/usr/bin/env nix-shell
|
|
#! nix-shell -i bash -p flac
|
|
if [ $1 == "flac" ]; then
|
|
for x in *.flac; do
|
|
flac "$x" --compression-level-8 -o "bruh.$x"
|
|
mv "bruh.$x" "$x"
|
|
done
|
|
else
|
|
echo "bruh"
|
|
fi
|