aboutsummaryrefslogtreecommitdiffstats
path: root/bash/profile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--bash/profile17
1 files changed, 17 insertions, 0 deletions
diff --git a/bash/profile b/bash/profile
new file mode 100644
index 0000000..096711e
--- /dev/null
+++ b/bash/profile
@@ -0,0 +1,17 @@
+# -*- shell-script -*-
+
+if test -r ~/.config/profile; then
+ . ~/.config/profile
+fi
+
+if test -r ~/.config/bash/"profile-$(hostname)"; then
+ . ~/.config/bash/"profile-$(hostname)"
+fi
+
+if test -r ~/work/.config/bash/profile; then
+ . ~/work/.config/bash/profile
+fi
+
+if test -r ~/.config/bash/bashrc; then
+ . ~/.config/bash/bashrc;
+fi