rand-quote.plugin.zsh 669 B

1234567891011121314151617
  1. # Get a random quote fron the site http://www.quotationspage.com/random.php3
  2. # Created by Eduardo San Martin Morote aka Posva
  3. # http://posva.github.io
  4. # Sun Jun 09 10:59:36 CEST 2013
  5. # Don't remove this header, thank you
  6. # Usage: quote
  7. if [[ -x `which curl` ]]; then
  8. function quote()
  9. {
  10. Q=$(curl -s --connect-timeout 2 "http://www.quotationspage.com/random.php3" | grep -m 1 "dt ")
  11. TXT=$(echo "$Q" | sed -e 's/<\/dt>.*//g' -e 's/.*html//g' -e 's/^[^a-zA-Z]*//' -e 's/<\/a..*$//g')
  12. W=$(echo "$Q" | sed -e 's/.*\/quotes\///g' -e 's/<.*//g' -e 's/.*">//g')
  13. echo "\e[0;33m${W}\e[0;30m: \e[0;35m“${TXT}”\e[m"
  14. }
  15. #quote
  16. fi