workstation/roles/home-cli/files/zprofile

21 lines
303 B
Text
Raw Normal View History

2022-08-19 14:52:07 +00:00
#!/bin/zsh
2022-08-23 14:10:57 +00:00
if [ -r /usr/local/etc/zprofile ]
then
. /usr/local/etc/zprofile ]
elif [ -r /etc/zprofile ]
2022-08-18 07:44:25 +00:00
then
2022-08-19 14:52:07 +00:00
. /etc/zprofile
fi
export _acp_ignore_shrc=1
if [ -r "$HOME/.profile" ]
2022-08-19 14:52:07 +00:00
then
emulate sh -c '. "$HOME/.profile"'
fi
unset _acp_ignore_shrc
if [ -r "$HOME/.zshrc" ]
then
. "$HOME/.zshrc"
2022-08-18 07:44:25 +00:00
fi