summaryrefslogtreecommitdiff
path: root/bash_profile
blob: 1e8fd306b79c27189acba9b96a8b6cc1d5dd9b56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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 "${HOME}/bin" ] ; then
	PATH="${HOME}/bin:${PATH}"
fi
if [ -d "${HOME}/local/bin" ] ; then
	PATH="${HOME}/local/bin:${PATH}"
fi
if [ -d /usr/lib/compilercache ] ; then
	PATH="/usr/lib/compilercache:${PATH}"
fi

export PATH
# vim:set ts=4: