aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_logout
blob: 4438bbe6f0f4487307535ad8d5b37ccbee110a34 (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