]> git.pld-linux.org Git - packages/bash.git/blob - bash-skel-.bash_profile
- do not set TMP and TMPDIR in .bash_profile, /etc/profile.d//tmp-dir.sh sets it...
[packages/bash.git] / bash-skel-.bash_profile
1 # .bash_profile - file executed when logging in
2
3 # execute local (and so system wide) rc file only when interactive (not from scp etc.)
4 # bash is too dumb to do in on it's own when started as login shell
5 if [[ $- = *i* ]] && [ -f ~/.bashrc ]; then
6         . ~/.bashrc
7 fi
8
9 export HISTSIZE=1000
10 export HISTFILESIZE=1000
11
12 # setup LOCALE variables
13 #export LANG=
14 #export LC_ALL=
15 #export LANGUAGE=
16 #export TZ=
17
18 # only You can access your files
19 #umask 077
20
21 # turn off accept of 'wall' and 'write':
22 #[ ! -x /usr/bin/mesg ] || mesg n
This page took 0.147794 seconds and 4 git commands to generate.