mirror of
https://github.com/rwxrob/dot
synced 2024-11-12 07:10:46 +00:00
10 lines
216 B
Bash
10 lines
216 B
Bash
# This file is only here because some brain-dead
|
|
# applications require it.
|
|
|
|
if [ -n "$BASH_VERSION" ]; then
|
|
# include .bashrc if it exists
|
|
if [ -f "$HOME/.bashrc" ]; then
|
|
. "$HOME/.bashrc"
|
|
fi
|
|
fi
|