From 3e2471deb6737d5a8111c51451e37eb2745288c8 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Fri, 4 Jan 2019 23:09:26 -0500 Subject: [PATCH] nifty alias examples --- .bashrc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.bashrc b/.bashrc index 30a6a9d..9a37ddc 100644 --- a/.bashrc +++ b/.bashrc @@ -36,9 +36,11 @@ alias diff="diff --color=auto" alias ccat="highlight --out-format=ansi" # Color cat - print file with syntax highlighting. # Internet -alias yt="youtube-dl --add-metadata -ic" # Download video link +alias yt="youtube-dl --add-metadata -i" # Download video link alias yta="yt -x -f bestaudio/best" # Download only audio alias YT="youtube-viewer" shdl() { curl -O $(curl -s http://sci-hub.tw/"$@" | grep location.href | grep -o http.*pdf) ;} -vf() { $EDITOR $(fzf) ;} +se() { du -a ~/.scripts/* ~/.config/* | awk '{print $2}' | fzf | xargs -r $EDITOR ;} +sv() { vcopy "$(du -a ~/.scripts/* ~/.config/* | awk '{print $2}' | fzf)" ;} +vf() { fzf | xargs -r -I % $EDITOR % ;}