-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bashrc
27 lines (24 loc) · 985 Bytes
/
.bashrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#set -x
# check where you are, then do those things instead
_check_os () {
uname -v | grep -i $1 > /dev/null
}
if _check_os darwin; then
source ~/.bashrc.darwin
elif _check_os ubuntu; then
source ~/.bashrc.ubuntu
else
echo "unknown operating system: `uname -v`"
echo "fix ~/.bashrc hook"
fi
############################################################
############################################################
######## ##############
######## DELETE EVERYTHING BELOW ##############
######## THIS FILE IS ONLY FOR ROUTING ##############
######## ---------- ##############
######## SOME OTHER TOOL ADDED CONFIG HERE, ##############
######## SLOWING DOWN YOUR SHELL ##############
######## ##############
############################################################
############################################################