Last active
November 10, 2016 02:50
-
-
Save probablycorey/f8dac19d3757da4579f03fc7f6327377 to your computer and use it in GitHub Desktop.
Bash function that enhances the `man` command
This file contains hidden or 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
# Add this to your .bashrc or .zshrc file for a modern and sophisticated | |
# alternative to `man`. | |
function woman() { | |
man -t $1 | open -f -a /Applications/Preview.app | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment