]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
Fallback to clear if clear_console is not found in logout.
authorSimon Ruderich <simon@ruderich.org>
Sun, 22 Feb 2009 14:27:55 +0000 (15:27 +0100)
committerSimon Ruderich <simon@ruderich.org>
Sun, 22 Feb 2009 14:27:55 +0000 (15:27 +0100)
shell/logout

index 069603dbd8eb260eba2d530218a0b6bc7158684c..1a87b04be282ba842d60e5ed5a0b42f362a13117 100644 (file)
@@ -2,9 +2,13 @@
 
 
 # When leaving the console clear the screen to increase privacy. Taken from
-# Debian default bash files. Thanks.
+# Debian default bash files and modified. Thanks.
 if [ "$SHLVL" = 1 ]; then
-    [ -x /usr/bin/clear_console ] && /usr/bin/clear_console -q
+    if [ -x /usr/bin/clear_console ]; then
+        /usr/bin/clear_console -q
+    else
+        clear
+    fi
 fi
 
 # vim: ft=sh