]> git.pld-linux.org Git - packages/bash.git/blob - bash-skel-.bash_profile
- working way
[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}" != "$-" -a -f ~/.bashrc ]; then
6         . ~/.bashrc
7 fi
8
9 export HISTSIZE=1000
10 export HISTFILESIZE=1000
11 export TMP=~/tmp
12 export TMPDIR="$TMP"
13
14 # setup LOCALE variables
15 #export LANG=
16 #export LC_ALL=
17 #export LANGUAGE=
18
19 # only You can access your files
20 #umask 077
21
22 # turn off accept of 'wall' and 'write':
23 #[ ! -x /usr/bin/mesg ] || mesg n
This page took 0.034633 seconds and 3 git commands to generate.