aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_logout
blob: c9b0ec6f71c4b82bd1b47abb07fcd9c90b108d11 (plain) (blame)
1
2
3
4
5
6
# Clear console if possible when logging out
if [[ "$SHLVL" = 1 ]]; then
    command -v clear_console &>/dev/null \
        && clear_console -q
fi