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