Skip to content

Instantly share code, notes, and snippets.

View fennectech's full-sized avatar

FennecTECH fennectech

View GitHub Profile
@patdavid
patdavid / recursive-directories-mp3-gain
Created October 4, 2016 15:45
recursively find directories and apply mp3gain to all the .mp3 files inside
find ./ -type d -exec bash -c 'cd "$1"; mp3gain -a -k -m 3 *.mp3' -- {} \;