Read a man page in your default browser.
Dependencies:
$ brew install man2html
$ gem install bcat
To install, add the function to your .bashrc or similar file.
Usage example:
$ hman rsync
| function hman() | |
| { | |
| if [ $# -gt 0 ]; then | |
| man $@ | man2html | bcat | |
| else | |
| man | |
| return 1 | |
| fi | |
| } |