Skip to content

Instantly share code, notes, and snippets.

@serverwentdown
Created December 22, 2014 10:11
Show Gist options
  • Save serverwentdown/20de17a1f33abe68190e to your computer and use it in GitHub Desktop.
Save serverwentdown/20de17a1f33abe68190e to your computer and use it in GitHub Desktop.
Wikipedia in lynx! I need help making this properly strip headers.
#!/bin/sh
curl -Ls "http://en.wikipedia.org/wiki/Special:Search?search=$@" | sed -n '/<div id="content" class="mw-body" role="main">$/,/<div id="mw-navigation">$/p' | lynx -stdin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment