Skip to content

Instantly share code, notes, and snippets.

@cstanfill
Created August 26, 2014 02:10
Show Gist options
  • Save cstanfill/808ef42224e0ac682c31 to your computer and use it in GitHub Desktop.
Save cstanfill/808ef42224e0ac682c31 to your computer and use it in GitHub Desktop.
#!/bin/bash
# makes `man git pull` & company do the thing you always want and not the stupid thing nobody has ever wanted
OLDIFS=$IFS
IFS="-"
ARGS="$*"
IFS=$OLDIFS
man $ARGS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment