workstation/roles/home-cli/files/zprofile

11 lines
134 B
Text
Raw Normal View History

2022-08-19 14:52:07 +00:00
#!/bin/zsh
if [ -r "$HOME/.profile" ]
2022-08-19 14:52:07 +00:00
then
emulate sh -c '. "$HOME/.profile"'
fi
2022-09-08 09:49:03 +00:00
if [ -r "$HOME/.zshrc" ]
then
. "$HOME/.zshrc"
fi