aboutsummaryrefslogtreecommitdiff
path: root/sh/shinit
diff options
context:
space:
mode:
Diffstat (limited to 'sh/shinit')
-rw-r--r--sh/shinit9
1 files changed, 6 insertions, 3 deletions
diff --git a/sh/shinit b/sh/shinit
index fe770a70..fb72cd14 100644
--- a/sh/shinit
+++ b/sh/shinit
@@ -1,4 +1,7 @@
-# If the shell is interactive, source ~/.shrc
-case $- in *i*)
- [ -f "$HOME"/.shrc ] && . "$HOME"/.shrc ;;
+# If the shell is interactive, and ~/.shrc exists, source it
+case $- in
+ *i*)
+ if [ -f "$HOME"/.shrc ] ; then
+ . "$HOME"/.shrc
+ fi
esac