home/.kshrc

14 lines
154 B
Plaintext
Raw Normal View History

2019-02-05 12:44:41 -06:00
#!/bin/ksh
#
# ~/.kshrc
#
# Source /etc/profile
. /etc/profile
# Source .profile
if [ -r ~/.profile ]; then
# shellcheck disable=1090
. ~/.profile
fi