blob: 1d327a82c5302cb648b2fdfee98d102fe04ee381 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# /etc/profile
# Set the initial path
export PATH=/bin:/usr/bin:/sbin:/usr/sbin
# Set umask
umask 022
for script in /etc/profile.d/*.sh ; do
if [ -r $script ] ; then
. $script
fi
unset script
done
|