From 35880108842006b66acef8453a34e4cc99dbc54d Mon Sep 17 00:00:00 2001 From: Felix Buehler Date: Sat, 5 Aug 2017 13:49:10 +0200 Subject: [PATCH] shell/aliases: added music-fix command --- shell/aliases.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/shell/aliases.sh b/shell/aliases.sh index de56cfd..6d354c7 100755 --- a/shell/aliases.sh +++ b/shell/aliases.sh @@ -31,6 +31,7 @@ alias youtube-dl='youtube-dl -o "%(title)s.%(ext)s"' alias yta='youtube-dl -o "%(title)s.%(ext)s" --extract-audio' alias yt3='youtube-dl -o "%(title)s.%(ext)s" --extract-audio --audio-format mp3' alias music-gain="find ~/Music -iname '*.mp3' -execdir mp3gain -q -k -p {} \+" +alias music-fix="find -print0 ~/Music | xargs -0 mp3val -f" alias grep="grep --color=auto" alias ls='ls --color=auto'