Skip to content

Instantly share code, notes, and snippets.

@luckylittle
Created February 21, 2024 00:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luckylittle/961e0b302808c0412de8505e38913d14 to your computer and use it in GitHub Desktop.
Save luckylittle/961e0b302808c0412de8505e38913d14 to your computer and use it in GitHub Desktop.
WAV to FLAC in all subdirectories
#!/bin/zsh
find . -type f -iname "*.wav" -execdir sh -c 'flac --compression-level-8 --verify "{}"' \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment