Skip to content

Instantly share code, notes, and snippets.

@amitu
Created June 26, 2015 07:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amitu/1e0465b64f854e516e3f to your computer and use it in GitHub Desktop.
Save amitu/1e0465b64f854e516e3f to your computer and use it in GitHub Desktop.
my new browser
#!/bin/sh
set -e
pandoc -s -r html $1 -o /tmp/e.text
if [[ -t 1 ]]; then
less /tmp/e.text
else
cat /tmp/e.text
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment