14 lines
154 B
Plaintext
14 lines
154 B
Plaintext
|
#!/bin/ksh
|
||
|
#
|
||
|
# ~/.kshrc
|
||
|
#
|
||
|
|
||
|
# Source /etc/profile
|
||
|
. /etc/profile
|
||
|
|
||
|
# Source .profile
|
||
|
if [ -r ~/.profile ]; then
|
||
|
# shellcheck disable=1090
|
||
|
. ~/.profile
|
||
|
fi
|