-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.bash_setup
More file actions
46 lines (36 loc) · 771 Bytes
/
.bash_setup
File metadata and controls
46 lines (36 loc) · 771 Bytes
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/bash
# This script runs all my personal .bash* files.
# Used in .bashrc so as not to have to write them all when creating a new machine
# Parse .envFile and export all env vars
if [ -f ~/.envFile ]; then
set -a
. ~/.envFile
set +a
fi
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
if [ -f ~/.bash_extras ]; then
. ~/.bash_extras
fi
if [ -f ~/.salling_aliases ]; then
. ~/.salling_aliases
fi
if [ -f ~/.conda_aliases ]; then
. ~/.conda_aliases
fi
if [ -f ~/easy_extraction ]; then
. ~/easy_extraction
fi
#if [ -f ~/venv.sh ]; then
# . ~/venv.sh
#fi
if [ -f ~/z.sh ]; then
. ~/z.sh
fi
if [ -f ~/git_requirements_creator.sh ]; then
. ~/git_requirements_creator.sh
fi
if [ -f ~/.mojo ]; then
. ~/.mojo
fi