From ed859b9e851e27fc07bad3d1fcd92863b3c6a24a Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Fri, 4 Sep 2020 16:16:28 +0200 Subject: [PATCH] Add the art of command line tip function in aliases --- dotfiles/shell/aliases | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/dotfiles/shell/aliases b/dotfiles/shell/aliases index 226843b..6163bec 100644 --- a/dotfiles/shell/aliases +++ b/dotfiles/shell/aliases @@ -21,3 +21,12 @@ alias visudo='export EDITOR=$EDITOR && sudo -E visudo' alias :q=' exit' alias :x=' exit' alias cd..='cd ..' + +taocl_tip() { + curl -s https://raw.githubusercontent.com/jlevy/the-art-of-command-line/master/README.md | + sed '/cowsay[.]png/d' | + pandoc -f markdown -t html | + xmlstarlet fo --html --dropdtd | + xmlstarlet sel -t -v "(html/body/ul/li[count(p)>0])[$RANDOM mod last()+1]" | + xmlstarlet unesc | fmt -80 | iconv -t US +}