Mercurial > hg > zsh-env
annotate zshrc-epm @ 178:51710c7c26c2
jdk 13 is superseeded by jdk 14, use the generic jdk 11 link
author | Dirk Olmes <dirk.olmes@codedo.de> |
---|---|
date | Tue, 21 Jul 2020 09:15:13 +0200 |
parents | 279d1363e918 |
children |
rev | line source |
---|---|
46 | 1 # |
2 # zshrc-epm: custom shell environment for EPM | |
3 # | |
4 | |
5 export EDITOR="nano" | |
6 export JAVA_HOME=/exentra/java | |
7 export PATH="$JAVA_HOME/bin":"$PATH" | |
8 | |
9 . /etc/profile.d/exentra.sh | |
10 | |
133
4a181ed71eb5
use EX_LOCATION if defined, fall back to EPM_LOCATION
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
130
diff
changeset
|
11 # EPM_LOCATION/EX_LOCATION is set through /etc/profile.d/exentra.sh |
4a181ed71eb5
use EX_LOCATION if defined, fall back to EPM_LOCATION
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
130
diff
changeset
|
12 if [[ "$EX_LOCATION" != "" ]]; then |
4a181ed71eb5
use EX_LOCATION if defined, fall back to EPM_LOCATION
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
130
diff
changeset
|
13 export PS1="%n@${EX_LOCATION}%# " |
4a181ed71eb5
use EX_LOCATION if defined, fall back to EPM_LOCATION
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
130
diff
changeset
|
14 else |
4a181ed71eb5
use EX_LOCATION if defined, fall back to EPM_LOCATION
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
130
diff
changeset
|
15 export PS1="%n@${EPM_LOCATION}%# " |
4a181ed71eb5
use EX_LOCATION if defined, fall back to EPM_LOCATION
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
130
diff
changeset
|
16 fi |
46 | 17 alias fw="sudo iptables --line-numbers -vnL" |
18 alias sue="sudo -u exentra -i" |