Skip to content

Instantly share code, notes, and snippets.

@mgalardini
Created July 2, 2012 16:00
Show Gist options
  • Save mgalardini/3033964 to your computer and use it in GitHub Desktop.
Save mgalardini/3033964 to your computer and use it in GitHub Desktop.
Music one-liners
#!/bin/bash
# Take the flac files in a directory and turn them into mp3s
for file in *.flac; do flac -cd "$file" | lame -h --preset standard - "${file%.flac}.mp3"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment