2022-03-22 00:04:49 -06:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# 00-global.bash
|
|
|
|
# define global bash things
|
|
|
|
#
|
|
|
|
|
|
|
|
# expand history size
|
2022-10-26 12:05:56 -06:00
|
|
|
export HISTSIZE=100000
|
2022-03-22 00:04:49 -06:00
|
|
|
|
|
|
|
# source global definitions
|
|
|
|
if [ -f /etc/bashrc ]; then
|
|
|
|
. /etc/bashrc
|
|
|
|
fi
|
|
|
|
|