12 lines
168 B
Plaintext
12 lines
168 B
Plaintext
|
#
|
||
|
# /etc/zprofile and ~/.zprofile are run for login shells
|
||
|
#
|
||
|
|
||
|
PATH="$PATH:$HOME/bin"
|
||
|
export PATH
|
||
|
|
||
|
# source profile
|
||
|
if [ -f /etc/profile ]; then
|
||
|
source /etc/profile
|
||
|
fi
|