15 lines
180 B
Bash
15 lines
180 B
Bash
|
#!/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
|
||
|
|