blob: 126f88048382ec80a3cb892840ea393bb7eec501 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# .bash_profile
# Set umask to something world-unreadable in any case
umask 027
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
|