Skip to content

Instantly share code, notes, and snippets.

@xdissent
Created March 26, 2010 23:52
Show Gist options
  • Save xdissent/345552 to your computer and use it in GitHub Desktop.
Save xdissent/345552 to your computer and use it in GitHub Desktop.
Batch convert FLAC audio files to WAV
mkdir -p wav && for a in *.flac; do flac -d -o "wav/`basename -s .flac $a`.wav" "$a"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment