This repository has been archived on 2025-01-31. You can view files and clone it, but cannot push or open issues or pull requests.
home/.kshrc

14 lines
154 B
Bash
Executable File

#!/bin/ksh
#
# ~/.kshrc
#
# Source /etc/profile
. /etc/profile
# Source .profile
if [ -r ~/.profile ]; then
# shellcheck disable=1090
. ~/.profile
fi