17 lines
233 B
Bash
17 lines
233 B
Bash
#!/bin/zsh
|
|
if [ -r /etc/zprofile ]
|
|
then
|
|
. /etc/zprofile
|
|
fi
|
|
|
|
export _acp_ignore_shrc=1
|
|
if [ -r "$HOME/.profile" ]
|
|
then
|
|
emulate sh -c '. "$HOME/.profile"'
|
|
fi
|
|
unset _acp_ignore_shrc
|
|
|
|
if [ -r "$HOME/.zshrc" ]
|
|
then
|
|
. "$HOME/.zshrc"
|
|
fi
|