]> git.pld-linux.org Git - packages/bash.git/blobdiff - bash-skel-.bash_profile
- release 2
[packages/bash.git] / bash-skel-.bash_profile
index 7837e8d011c2c6f513a916528da778274429fd23..9d98d0fdbb944c6ecba9223c88a4f06e5f2cea60 100644 (file)
@@ -2,19 +2,20 @@
 
 # execute local (and so system wide) rc file only when interactive (not from scp etc.)
 # bash is too dumb to do in on it's own when started as login shell
-if [ $- = *i* && -f ~/.bashrc ]; then
+if [[ $- = *i* ]] && [ -f ~/.bashrc ]; then
        . ~/.bashrc
 fi
 
 export HISTSIZE=1000
 export HISTFILESIZE=1000
 export TMP=~/tmp
-export TMPDIR="$TMP"
+export TMPDIR=$TMP
 
 # setup LOCALE variables
 #export LANG=
 #export LC_ALL=
 #export LANGUAGE=
+#export TZ=
 
 # only You can access your files
 #umask 077
This page took 0.038276 seconds and 4 git commands to generate.