workstation/roles/home-cli/files/shrc

17 lines
174 B
Text
Raw Normal View History

2022-09-16 07:46:13 +00:00
#!/bin/sh
if [ -r "$HOME/.profile" ]
then
. "$HOME/.profile"
fi
case "$-" in
*i*)
# Shell is interactive.
usermotd
;;
*)
# Shell is not interactive.
return 1
;;
esac