bin/shrc/kshrc

14 lines
154 B
Plaintext
Raw Normal View History

2018-08-08 16:55:22 -05:00
#!/bin/ksh
#
# ~/.kshrc
#
# Source /etc/profile
. /etc/profile
# Source .profile
if [ -r ~/.profile ]; then
2018-11-22 02:44:56 -06:00
# shellcheck disable=1090
2018-08-08 16:55:22 -05:00
. ~/.profile
fi