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