From 8b62b9b23b42388dfd069bcedc776149574b3409 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Sat, 24 Dec 2022 02:49:08 -0500 Subject: [PATCH] [+] flac2mp3 --- scripts/zshrc.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/zshrc.sh b/scripts/zshrc.sh index b06073e..d831fb6 100755 --- a/scripts/zshrc.sh +++ b/scripts/zshrc.sh @@ -296,5 +296,7 @@ cut() { alias vcomp="$BASEDIR/scripts/helpers/video.py" alias vcompy="ipython -i $BASEDIR/scripts/helpers/video.py" +alias flac2mp3='for file in *.flac; do $(flac -cd "$file" | lame -h - "${file%.flac}.mp3"); done' + # include if it exists [ -f "$HOME/extra.rc.sh" ] && . "$HOME/extra.rc.sh"