Hacker News new | ask | show | jobs
by tyingq 3734 days ago
html2text and a bash function seem to do okay.

  $ sudo apt-get install html2text

  $ function lookup() {curl -sL http://wikipedia.com/wiki/$1|html2text -ascii|less;}

  $ lookup node.js
Edit: Replace spaces with underscores for multi word lookups, like George_Washington. Or fix the function.