Bash.org quotes added.

This commit is contained in:
Storm Dragon 2016-09-24 16:19:52 -04:00
parent d3f3642697
commit e1f7d87c91

11
modules/bash/bash.sh Executable file
View File

@ -0,0 +1,11 @@
[ -f functions.sh ] && source functions.sh
quote="$(curl -s http://bash.org/?random)"
quote="$(echo "$quote" | grep -m 1 -A 10 '"Permanent link to this quote."')"
quote="${quote#*class=\"qt\">}"
quote="${quote//&lt;/<}"
quote="${quote//&gt;/>}"
quote="${quote%</p>*}"
quote="$(echo "$quote" | html2text)"
msg "$2" "$quote"
exit 0