]> git.donarmstrong.com Git - home-base.git/blob - .bash_profile
tweak aptitude configuration
[home-base.git] / .bash_profile
1 # ~/.bash_profile: executed by bash(1) for login shells.
2 # see /usr/share/doc/bash/examples/startup-files for examples.
3 # the files are located in the bash-doc package.
4
5 umask 022
6
7 # the rest of this file is commented out.
8
9 # include .bashrc if it exists
10
11 if [ -f ~/.bashrc ]; then
12     source ~/.bashrc
13 fi
14
15 # set PATH so it includes user's private bin if it exists
16 #if [ -d ~/bin ] ; then
17 #    PATH=~/bin:"${PATH}"
18 #fi
19
20 # do the same with MANPATH
21 #if [ -d ~/man ]; then
22 #    MANPATH=~/man:"${MANPATH}"
23 #fi
24
25 if locale -a |grep -qi en_US.utf8; then
26     LANG="en_US.UTF-8"
27 else
28     LANG=C
29 fi;
30
31 export LANG