diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2022-03-22 00:04:49 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2022-03-22 00:04:49 -0600 |
commit | f7a7898c58fac7f90209d020be4755c8948fa9f7 (patch) | |
tree | 6f0f425594b2e45d8345a68e04c0710d16df9c51 /bash/.bash/00-global.bash | |
parent | 44d79a46e681df48a510629a75ee02165f492392 (diff) | |
download | dotfiles-f7a7898c58fac7f90209d020be4755c8948fa9f7.tar dotfiles-f7a7898c58fac7f90209d020be4755c8948fa9f7.tar.gz dotfiles-f7a7898c58fac7f90209d020be4755c8948fa9f7.tar.bz2 |
reorganized bash configs
Diffstat (limited to 'bash/.bash/00-global.bash')
-rw-r--r-- | bash/.bash/00-global.bash | 14 |
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 + |