5 lines
90 B
Bash
5 lines
90 B
Bash
#!/usr/bin/env zsh
|
|
if [ -r "$HOME/.profile" ]
|
|
then
|
|
emulate sh -c '. "$HOME/.profile"'
|
|
fi
|