# global bash profile. This file is processed for all interactive shells

# this is the minimum and given by init to start scripts (so a good start)
PATH=/usr/local/sbin:/sbin:/bin:/usr/sbin:/usr/bin

# these might not be present, so keep our path clean:
for DIR in							\
	/usr/local/bin /usr/X11/bin ${HOME}/bin			\
	/usr/local/games /usr/games				\
	; do
	[ -d $DIR ] && PATH="$PATH:$DIR"
done

# this is a global default file, the users get their own version from
# /etc/skel so we do not set superfluous prompts etc in here!

# Now we're done with pre-finish settings we can close off:
[ -f /etc/LOCALE ] && . /etc/LOCALE

# bare necessities:
export  PATH
umask   022

