]> git.pld-linux.org Git - packages/bash.git/blame - bash-skel-.bash_profile
- don't overwrite translations with 4-year old TP snapshot
[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
11export TMP=~/tmp
1c0226f5 12export TMPDIR=$TMP
130aded2
JK
13
14# setup LOCALE variables
f1a3a4f1
ER
15#export LANG=
16#export LC_ALL=
edd6ecdc 17#export LANGUAGE=
1c0226f5 18#export TZ=
1b1920c5 19
26da7389
ER
20# only You can access your files
21#umask 077
130aded2 22
26da7389
ER
23# turn off accept of 'wall' and 'write':
24#[ ! -x /usr/bin/mesg ] || mesg n
This page took 0.092899 seconds and 4 git commands to generate.