aboutsummaryrefslogtreecommitdiff
path: root/bash/.bash/00-global.bash
diff options
context:
space:
mode:
Diffstat (limited to 'bash/.bash/00-global.bash')
-rw-r--r--bash/.bash/00-global.bash14
1 files changed, 14 insertions, 0 deletions
diff --git a/bash/.bash/00-global.bash b/bash/.bash/00-global.bash
new file mode 100644
index 0000000..38718fb
--- /dev/null
+++ b/bash/.bash/00-global.bash
@@ -0,0 +1,14 @@
+#!/bin/sh
+#
+# 00-global.bash
+# define global bash things
+#
+
+# expand history size
+export HISTSIZE=5000
+
+# source global definitions
+if [ -f /etc/bashrc ]; then
+ . /etc/bashrc
+fi
+