]> git.pld-linux.org Git - packages/bash.git/blob - bash-skel-.bash_profile
Up to 5.2.26
[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 export HISTCONTROL=ignoredups
12
13 # setup LOCALE variables
14 #export LANG=
15 #export LC_ALL=
16 #export LANGUAGE=
17 #export TZ=
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.116873 seconds and 3 git commands to generate.