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