Created
November 10, 2009 17:31
-
-
Save markuswustenberg/231054 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# A short script to update all flac-files in subdirs to the best compression, with replay gain added. | |
du -h | |
export IFS=$'\n'; for dir in `find . -type d` ; do cd ${dir} ; flac --verify --best --force --replay-gain *.flac ; cd - ; done | |
du -h |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment