blob: 38718fbba251be1eed8bb9284cbedb180737b5bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
|