Prevent: TMOUT: readonly variable
authorshort <>
Sat, 30 Apr 2005 06:39:48 +0000 (06:39 +0000)
committershort <>
Sat, 30 Apr 2005 06:39:48 +0000 (06:39 +0000)
.bashrc

diff --git a/.bashrc b/.bashrc
index a2469a7..f6dcb35 100644 (file)
--- a/.bashrc
+++ b/.bashrc
@@ -120,7 +120,8 @@ weblog="/var/log/httpd/klokan.access_log"
 if [ -f "$weblog" ];then alias weblog='tail -n 20000 "$weblog"|grep "\\(~\\|%7[eE]\\)short"';fi
 
 export IGNOREEOF=10
-export TMOUT=900
+# '2>/dev/null' to prevent: TMOUT: readonly variable
+export TMOUT=900 2>/dev/null
 export EDITOR='vim'
 [ -x /bin/less ] && export PAGER='/bin/less -MMh5cis'
 export PERL_MM_OPT="PERL=$HOME/bin/perlilib"