dotfiles/bash/.bash/00-global.bash

15 lines
180 B
Bash
Raw Normal View History

2022-03-22 00:04:49 -06:00
#!/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