6 lines
219 B
Bash
6 lines
219 B
Bash
# Executed by bash when a login shell exits
|
|
|
|
# Clear the screen to increase privacy
|
|
if [ "$SHLVL" = 1 ]; then
|
|
[ -x /usr/bin/clear ] && /usr/bin/clear || [ -x /usr/bin/clear_console ] && /usr/bin/clear_console -q
|
|
fi
|