From 04d117e8c32e60d7087410c755161f98e41fbee9 Mon Sep 17 00:00:00 2001 From: "chawley (hannibal)" Date: Mon, 11 Feb 2019 15:40:44 -0500 Subject: [PATCH] Added ytdlmp3 alias --- .zsh_aliases | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.zsh_aliases b/.zsh_aliases index 87ab25b..e5a5b89 100644 --- a/.zsh_aliases +++ b/.zsh_aliases @@ -56,7 +56,8 @@ alias crawlrestore='rm -rf ~/.crawl && tar xvf ~/crawlsave.tgz -C ~/ && crawl-ti alias mempigs='ps aux | awk '\''{print $6/1024 " MB\t\t" $11 " " $12}'\'' | sort -n | tail -10' # Always get a proper output name from youtube-dl -alias ytdl='youtube-dl -o "%(title)s.%(ext)s"' +alias ytdl='youtube-dl -o "%(title)s.%(ext)s" ' +alias ytdlmp3='youtube-dl --extract-audio --audio-format mp3 -o "%(title)s.%(ext)s" ' # termbin shortcut alias tb='nc bin.planethawleywood.com 9999'