]> git.pld-linux.org Git - packages/bash.git/blame - bash-skel-.bash_profile
Up to 5.2.26
[packages/bash.git] / bash-skel-.bash_profile
CommitLineData
ee6544c8 1# .bash_profile - file executed when logging in
2
edd6ecdc
TP
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
123a9c0b 5if [[ $- = *i* ]] && [ -f ~/.bashrc ]; then
ee6544c8 6 . ~/.bashrc
7fi
8
f1a3a4f1
ER
9export HISTSIZE=1000
10export HISTFILESIZE=1000
3604b68e 11export HISTCONTROL=ignoredups
130aded2
JK
12
13# setup LOCALE variables
f1a3a4f1
ER
14#export LANG=
15#export LC_ALL=
edd6ecdc 16#export LANGUAGE=
1c0226f5 17#export TZ=
1b1920c5 18
26da7389
ER
19# only You can access your files
20#umask 077
130aded2 21
26da7389
ER
22# turn off accept of 'wall' and 'write':
23#[ ! -x /usr/bin/mesg ] || mesg n
This page took 0.202679 seconds and 4 git commands to generate.