-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbash_init.sh
executable file
·29 lines (24 loc) · 991 Bytes
/
bash_init.sh
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
28
29
#!/bin/bash
################################################################################
# #
# Init script to be called from .bashrc #
# #
# binaryanomaly - v0.1 #
# #
################################################################################
# Bash colors --> Load first
if [ -f ~/bash_files/bash_colors.sh ]; then
. ~/bash_files/bash_colors.sh
fi
# Bash prompt
if [ -f ~/bash_files/bash_prompt.sh ]; then
. ~/bash_files/bash_prompt.sh
fi
# Bash greeter
if [ -f ~/bash_files/bash_greeter.sh ]; then
. ~/bash_files/bash_greeter.sh
fi
# Alias definitions.
if [ -f ~/bash_files/bash_aliases.sh ]; then
. ~/bash_files/bash_aliases.sh
fi