]> git.pld-linux.org Git - packages/bash.git/blame_incremental - bash-skel-.bash_profile
- removed stty erase setting to `tput kbs` as it causes nothing but problems
[packages/bash.git] / bash-skel-.bash_profile
... / ...
CommitLineData
1# .bash_profile - file executed when logging in
2
3if [ -f ~/.bashrc ]; then
4 . ~/.bashrc
5fi
6
7HISTSIZE=1000
8HISTFILESIZE=1000
9TMP=~/tmp
10TMPDIR="$TMP"
11
12# setup LOCALE variables
13#LANG=
14#LC_ALL=
15#export LANG LC_ALL
16
17export HISTSIZE HISTFILESIZE TMP TMPDIR
18
19umask 077
20
21if [ -x /usr/bin/mesg ]; then
22 mesg n
23fi
This page took 0.026315 seconds and 4 git commands to generate.