diff options
author | Peter Palfrader <peter@palfrader.org> | 2006-04-29 14:42:20 +0000 |
---|---|---|
committer | weasel <weasel@bc3d92e2-beff-0310-a7cd-cc87d7ac0ede> | 2006-04-29 14:42:20 +0000 |
commit | 981fc13637ac75cb0fc9c8cc55305f23e04327be (patch) | |
tree | 50f7f9c5169cf881663c452f212770a0a0b26567 /bash_profile |
Add dotfiles
git-svn-id: svn+ssh://asteria.noreply.org/svn/weaselutils/trunk@71 bc3d92e2-beff-0310-a7cd-cc87d7ac0ede
Diffstat (limited to 'bash_profile')
-rw-r--r-- | bash_profile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/bash_profile b/bash_profile new file mode 100644 index 0000000..ef85b9f --- /dev/null +++ b/bash_profile @@ -0,0 +1,29 @@ +# ~/.bash_profile: executed by bash(1) for login shells. +# see /usr/share/doc/bash/examples/startup-files for examples + +if [ "`id -u`" != "0" ] ; then + umask 002 +else + umask 022 +fi + +# the rest of this file is commented out. + +# include .bashrc if it exists + +if [ -f ~/.bashrc ]; then + source ~/.bashrc +fi + +if [ -d ~/bin ] ; then + PATH="~/bin:${PATH}" +fi +if [ -d ~/local/bin ] ; then + PATH="~/local/bin:${PATH}" +fi +if [ -d /usr/lib/compilercache ] ; then + PATH="/usr/lib/compilercache:${PATH}" +fi + +export PATH +# vim:set ts=4: |