Skip to content

Instantly share code, notes, and snippets.

@kennethreitz
Forked from defunkt/browser
Created March 3, 2010 21:47
Show Gist options
  • Save kennethreitz/321081 to your computer and use it in GitHub Desktop.
Save kennethreitz/321081 to your computer and use it in GitHub Desktop.
html | browser
#!/bin/sh -e
#
# Usage: browser
# pipe html to a browser
# e.g.
# $ echo "<h1>hi mom!</h1>" | browser
# $ ron -5 man/rip.5.ron | browser
if [ -t 0 ]; then
cat <<usage
Usage: browser
pipe html to a browser
$ echo '<h1>hi mom!</h1>' | browser
$ ron -5 man/rip.5.ron | browser
usage
else
f="/tmp/browser.$RANDOM.html"
cat /dev/stdin > $f
open $f
fi
@kennethreitz
Copy link
Author

Installation:

brew install browser

Or, if you must:

 sudo curl http://gist.github.com/raw/318247/browser -o /usr/local/bin/browser
 sudo chmod +x /usr/local/bin/browser

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment