Guest User

Untitled

a guest
Oct 18th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. git() {
  2. for i in "$@"; do
  3. if [ "$i" == "-am" ]; then
  4. echo "Nein Dennis, -am gibt's nicht!" >&2
  5. return
  6. fi
  7. done
  8.  
  9. $(which git) "$@"
  10. }
Add Comment
Please, Sign In to add comment