workstation/roles/home-cli/files/zprofile

11 lines
128 B
Text
Raw Normal View History

2022-08-19 14:52:07 +00:00
#!/bin/zsh
if [ -r /etc/zprofile ]
2022-08-18 07:44:25 +00:00
then
2022-08-19 14:52:07 +00:00
. /etc/zprofile
fi
if [ -e $HOME/.profile ]
then
emulate sh -c ". $HOME/.profile"
2022-08-18 07:44:25 +00:00
fi