-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bashrc
23 lines (21 loc) · 946 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
####
# ~/.bashrc
#
# | | Interactive | Interactive | Script |
# | | login | non-login | |
# | ---------------- | ----------- | ----------- | ------ |
# | /etc/profile | A | | |
# | /etc/bash.bashrc | | A | |
# | ~/.bashrc | | B | |
# | ~/.bash_profile | B1 | | |
# | ~/.bash_login | B2 | | |
# | ~/.profile | B3 | | |
# | BASH_ENV | | | B |
# | ---------------- | ----------- | ----------- | ------ |
# | ~/.bash_logout | C | | |
####
[[ -f ~/.env ]] && source ~/.env
[[ -f ~/.env.bash ]] && source ~/.env.bash
[[ -f ~/.env.local ]] && source ~/.env.local
[[ -f ~/.env.bash.local ]] && source ~/.env.bash.local
source $PMS/pms.sh bash