Use a function instead of an alias for kinit so arguments are not
eaten.
alias pssh='ssh -o preferredauthentications=password,keyboard-interactive'
unalias kinit 2>/dev/null
-if [ -z "$OLDSOLARIS" -a -z "$OLDREDHAT" ]; then
+if [ 1 = 0 -a -z "$OLDSOLARIS" -a -z "$OLDREDHAT" ]; then
if tty -s; then
if [ ! "$SUDO_UID" ]; then
if klist -s 2>/dev/null; then
fi
unset cache ccname default ng
-alias kinit='( builtin cd /; exec -c kinit )'
+function kinit() {
+ ( builtin cd /; exec -c kinit ${1+"$@"} )
+}