aboutsummaryrefslogtreecommitdiff
path: root/dot_zshenv
blob: 4d24e85807050538f39338e14e04da1b9dbd089a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# for gpg-agent/pinentry to work, even in non-interactive shells
export GPG_TTY="${TTY}"

# Otherwise we cannot use ^o as a keybinding
if [[ `uname` == "Darwin" ]]; then
    stty discard undef
fi

aklogs () {
    for r in ANDREW.CMU.EDU CLUB.CC.CMU.EDU; do
        KRB5CCNAME=`KRB5CCNAME=DIR:$HOME/.cache/krb5cc klist -l | grep $r | sed -e s'/.*:://g'` aklog -c $r -k $r
    done
}

kinits () {
    kinit -r 200h -f rkavanag@ANDREW.CMU.EDU
    kinit -r 200h -f rak@CLUB.CC.CMU.EDU
}

rkinits () {
    for r in rkavanag@ANDREW.CMU.EDU rak@CLUB.CC.CMU.EDU; do
        KRB5CCNAME=`KRB5CCNAME=DIR:$HOME/.cache/krb5cc klist -l | grep $r | sed -e s'/.*:://g'` kinit -R $r
    done
    KRB5CCNAME=DIR:$HOME/.cache/krb5cc aklogs
}