Please bear with us as we work to restore functionality to dotfiles.org.
cemeth
/.bash_logout
# ~/.bash_logout -*- coding: utf-8 -*-
#-----------------------------------------------------------------------------
# Clear sudo auth cache
#sudo -k
echo -en "\nduration: "
echo -e "`expr $SECONDS / 3600` hours `expr $SECONDS / 60` mins `expr $SECONDS % 60` secs\n"
sleep 1
if [ "$SHLVL" = 1 ] && [ -x /usr/bin/clear_console ]; then
/usr/bin/clear_console -q
else
clear
fi
#-----------------------------------------------------------------------------
#vim: set fenc=utf-8 ft=sh sts=4 sw=4 ts=4 et :