Add the art of command line tip function in aliases
This commit is contained in:
parent
b8d4716206
commit
ed859b9e85
1 changed files with 9 additions and 0 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue