blob: 1700755c825c158db6f32e5cd47e6ccbd530156a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
#
# 00-global.bash
# define global bash things
#
# expand history size
export HISTSIZE=100000
# source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
|