Skip to content

Instantly share code, notes, and snippets.

@sk7
Last active December 17, 2015 21:59
Show Gist options
  • Save sk7/5678474 to your computer and use it in GitHub Desktop.
Save sk7/5678474 to your computer and use it in GitHub Desktop.
Open man pages with Dash ( http://kapeli.com/dash )
# Use Dash for man pages
man() {
if [ $# -eq 1 ]; then
command open dash://man:"$@";
else
command man $@;
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment