10 lines
214 B
Bash
10 lines
214 B
Bash
|
# vim: ft=sh
|
||
|
|
||
|
# Remove static SSH Agent
|
||
|
rm SSH_AUTH_SOCK
|
||
|
|
||
|
# when leaving the console clear the screen to increase privacy
|
||
|
if [ "$SHLVL" = 1 ]; then
|
||
|
[ -x /usr/bin/clear_console ] && /usr/bin/clear_console -q
|
||
|
fi
|