2016-09-24 16:19:52 -04:00
|
|
|
[ -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//</<}"
|
|
|
|
quote="${quote//>/>}"
|
2016-09-24 23:09:37 -04:00
|
|
|
quote="${quote%%<p class*}"
|
2016-09-24 16:19:52 -04:00
|
|
|
quote="$(echo "$quote" | html2text)"
|
2016-09-24 23:09:37 -04:00
|
|
|
msg "$2" "$(echo "$quote" | tr -s '[:space:]' ' ')"
|
2016-09-24 16:19:52 -04:00
|
|
|
exit 0
|