1##
2# Bourne Again Shell environment file
3# Global environment setup
4#
5# Wilfredo Sanchez Jr. | tritan@mit.edu
6# July 09, 1992
7#
8# MIT Project Athena
9#
10# ORIGINAL SOURCES: /usr/athena/lib/init/cshrc (ATHENA REL 7.3P)
11##
12
13export ENV_SET="YES"		# avoid repeat
14
15# File creation mask
16umask 022			# all files created are -rw-r--r--
17
18##
19# Load user environment
20##
21
22if [ -f ${bash_initdir}/environment.mine ]; then
23    source ${bash_initdir}/environment.mine
24fi
25