From 94945c90a5b7f43289c03060a1b4a876561e0fce Mon Sep 17 00:00:00 2001 From: Michael Komitee Date: Sat, 8 Jan 2011 21:56:46 -0500 Subject: [PATCH] New function to execute a command w/out a kerberos CCACHE # Please enter the commit message for your changes. Lines starting # with '#' will be ignored, and an empty message aborts the commit. # On branch original # Changes to be committed: # (use "git reset HEAD ..." to unstage) # # new file: kerberos/kerberos.plugin.zsh # --- plugins/kerberos/kerberos.plugin.zsh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 plugins/kerberos/kerberos.plugin.zsh diff --git a/plugins/kerberos/kerberos.plugin.zsh b/plugins/kerberos/kerberos.plugin.zsh new file mode 100644 index 000000000..7017add5c --- /dev/null +++ b/plugins/kerberos/kerberos.plugin.zsh @@ -0,0 +1,4 @@ +#Execute a command without a kerberos ccache. +function nok () { + KRB5CCNAME='' $* +}