21 lines
323 B
Plaintext
21 lines
323 B
Plaintext
|
#
|
||
|
# /etc/zprofile and ~/.zprofile are run for login shells
|
||
|
#
|
||
|
|
||
|
#
|
||
|
# all bourne shells should source /etc/profile
|
||
|
source /etc/profile
|
||
|
|
||
|
#
|
||
|
# run other components -- zsh is a bourne shell
|
||
|
#for i in /etc/profile.d/*.sh
|
||
|
#do
|
||
|
# source $i
|
||
|
#done
|
||
|
#
|
||
|
#if [ `id -gn` = `id -un` -a `id -u` -gt 14 ]; then
|
||
|
# umask 002
|
||
|
#else
|
||
|
# umask 022
|
||
|
#fi
|