Guest User

Untitled

a guest
May 25th, 2018
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #!/bin/sh -e
  2. # Copyright 2010, Tim Henigan <tim.henigan@gmail.com>
  3. #
  4. # A simple launcher for gitk which will print usage instructions
  5. # if requested
  6.  
  7. for i in $*
  8. do
  9. case "$i" in
  10. -h|--h|--he|--hel|--help)
  11. echo "$0 [<option>...] [<revs>] [--] [<path>...]"
  12. exit 0
  13. esac
  14. done
  15.  
  16. gitk "$@"
  17. exit $?
Add Comment
Please, Sign In to add comment