5 lines
134 B
Bash
Executable file
5 lines
134 B
Bash
Executable file
#!/bin/sh
|
|
|
|
[ -f "$HOME/.bash_profile" ] && emulate sh -c "source $HOME/.bash_profile"
|
|
|
|
[ -f "$HOME/.zshrc" ] && source "$HOME/.zshrc"
|