Skip to content

Instantly share code, notes, and snippets.

@davidhuser
Created September 23, 2017 18:16
Show Gist options
  • Save davidhuser/713e7941e6604c14a6ef5acd921d12eb to your computer and use it in GitHub Desktop.
Save davidhuser/713e7941e6604c14a6ef5acd921d12eb to your computer and use it in GitHub Desktop.
#!/bin/bash
find . -type f -name '*.flac' | while read fn; do
echo "$fn"
flac -ds --force-aiff-format --delete-input-file "$fn"
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment