Skip to content

Instantly share code, notes, and snippets.

@ttilley
Created December 28, 2011 23:46
Show Gist options
  • Save ttilley/1530477 to your computer and use it in GitHub Desktop.
Save ttilley/1530477 to your computer and use it in GitHub Desktop.
open man page in browser on mac
function htman() {
TMPPATH="${TMPDIR:=/tmp/}${@}$RANDOM.html"
groffer --html --html-viewer-tty=cat -- ${@} > "${TMPPATH}"
[[ "$?" == "1" ]] && return 1
${BROWSER:=/usr/bin/open} "${TMPPATH}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment