blob: 1e36d02e6c5245101521211c2ed604d86d595696 (
plain)
| 1
2
3
4
5
6
 | # ~/.bash_logout: executed by bash(1) when login shell exits.
# clear the screen to increase privacy when leaving the console
if [ "$SHLVL" = 1 ]; then
    [ -x /usr/bin/clear_console ] && /usr/bin/clear_console -q
fi
 |