forked from rsterbin/personal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbash_profile
More file actions
29 lines (27 loc) · 862 Bytes
/
Copy pathbash_profile
File metadata and controls
29 lines (27 loc) · 862 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
# Sometimes the SAs set the path in .bash_profile; check this against it before
# saving
PATH="/opt/sunstudio12.1/bin"
PATH="${PATH}:/opt/SUNWspro/bin"
PATH="${PATH}:/usr/ccs/bin"
PATH="${PATH}:/usr/sfw/bin"
PATH="${PATH}:/usr/gnu/bin"
PATH="${PATH}:/usr/bin"
PATH="${PATH}:/usr/sbin"
PATH="${PATH}:/opt/omni/bin"
PATH="${PATH}:/opt/OMNIperl/bin"
PATH="${PATH}:/sbin"
PATH="${PATH}:/opt/csw/bin"
PATH="${PATH}:/opt/omni/bin"
PATH="${PATH}:/opt/php53/bin"
PATH="${PATH}:/opt/pgsql844/bin"
PATH="${PATH}:/opt/pgsql842/bin"
# Ditto for the man path
MANPATH="/usr/bin/man"
MANPATH="${PATH}:/usr/share/man"
MANPATH="${PATH}:/opt/omni/share/man"
MANPATH="${PATH}:/opt/omni/man"
export PATH MANPATH
# Fixes the term on iTerm
[[ $TERM == 'xterm' ]] && export TERM=xtermc
[[ $TERM == 'xterm-color' ]] && export TERM=xtermc
[[ -f ${HOME}/.bashrc ]] && . ${HOME}/.bashrc