aboutsummaryrefslogtreecommitdiff
path: root/sh/shrc
diff options
context:
space:
mode:
Diffstat (limited to 'sh/shrc')
-rw-r--r--sh/shrc12
1 files changed, 12 insertions, 0 deletions
diff --git a/sh/shrc b/sh/shrc
new file mode 100644
index 00000000..deb55cc2
--- /dev/null
+++ b/sh/shrc
@@ -0,0 +1,12 @@
+# Make sure the shell is interactive
+case $- in
+ *i*) ;;
+ *) return ;;
+esac
+
+# Load all the POSIX-compatible functions from ~/.shrc.d; more advanced shells
+# like bash will have their own functions
+for sh in "$HOME"/.shrc.d/*.sh ; do
+ [ -e "$sh" ] && . "$sh"
+done
+unset -v sh