Skip to content

Instantly share code, notes, and snippets.

View markuswustenberg's full-sized avatar

Markus Wüstenberg markuswustenberg

View GitHub Profile
#!/bin/bash
#A short script to add replay gain to flac files recursively.
export IFS=$'\n'; for dir in `find . -type d` ; do cd ${dir} ; metaflac --add-replay-gain *.flac ; cd - ; done