Skip to content

Instantly share code, notes, and snippets.

@jcpst
Created January 5, 2015 03:38
Show Gist options
  • Save jcpst/bcdcc58142f5fd540162 to your computer and use it in GitHub Desktop.
Save jcpst/bcdcc58142f5fd540162 to your computer and use it in GitHub Desktop.
Convert all mp3s in directory using LAME - BASH one-liner
for i in *.mp3; do lame --decode "$i"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment