13 lines
127 B
Bash
Executable File
13 lines
127 B
Bash
Executable File
#!/bin/ksh
|
|
#
|
|
# ~/.kshrc
|
|
#
|
|
|
|
# Source /etc/profile
|
|
. /etc/profile
|
|
|
|
# Source .profile
|
|
if [ -r ~/.profile ]; then
|
|
. ~/.profile
|
|
fi
|