Created
December 28, 2011 23:46
-
-
Save ttilley/1530477 to your computer and use it in GitHub Desktop.
open man page in browser on mac
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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