]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - bash/rc
Less configuration is now done through a .less file.
[config/dotfiles.git] / bash / rc
diff --git a/bash/rc b/bash/rc
index 455ce0dd0eeb32b610cce470a374246cd0e99d61..e0563a93942dbe0d4b2ba15264874185c1508356 100644 (file)
--- a/bash/rc
+++ b/bash/rc
@@ -8,3 +8,13 @@ export LC_ALL=en_US.UTF-8
 export EDITOR='vim'
 # Use Vi(m) style in bash.
 set -o vi
+
+
+# If a rc.local file exists load it, otherwise load a rc file for the current
+# hostname (first part before a dot) if it exists.
+host=$(echo $(hostname) | sed -e 's/\..*$//')
+if [ -f ~/.bash/rc.local ]; then
+    source ~/.bash/rc.local
+elif [ -f ~/.bash/rc.$host ]; then
+    source ~/.bash/rc.$host
+fi