# Shell logout file usable by all shells. # When leaving the console clear the screen to increase privacy. Taken from # Debian default bash files and modified. Thanks. if [ "$SHLVL" = 1 ]; then if [ -x /usr/bin/clear_console ]; then /usr/bin/clear_console -q else clear fi fi # vim: ft=sh