-
Notifications
You must be signed in to change notification settings - Fork 78
/
shellpaths
44 lines (36 loc) · 1.37 KB
/
shellpaths
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
#!/bin/sh
########################################################################
# Shell agnostic path setup
########################################################################
# Matthew's Scripts
export PATH=$PATH:.
export PATH=$PATH:~/bin
export PATH=$PATH:~/.dotfiles/scripts
# Araxis
export PATH=/Applications/Araxis\ Merge.app/Contents/Utilities:$PATH
# Brew
export PATH="/usr/local/sbin:$PATH"
# Dev frameworks
#export PATH=$PATH:$ANT_HOME/bin
#export PATH=$PATH:$M2_HOME/bin
#export PATH=$PATH:$GROOVY_HOME/bin
#export PATH=$PATH:$GRAILS_HOME/bin
#export PATH=$PATH:$NEXUS_HOME/bin/jsw/macosx-universal-64
#export PATH=$PATH:$JMETER_HOME/bin
#export PATH=$PATH:$JRUBY_HOME/bin
#export PATH=$PATH:$SOAPUI_HOME/bin
#export PATH=$PATH:$APPENGINE_HOME/bin
# Dev
#export PATH=$PATH:/Applications/Dev/apache-tomcat/bin
#export PATH=$PATH:/Applications/Dev/apache-maven/bin
#export PATH=$PATH:/Applications/Dev/sonar/bin/macosx-universal-64
#export PATH=$PATH:/Library/PostgreSQL/8.4/bin
#export PATH=$PATH:/Applications/Dev/gradle/bin
#export PATH=/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Commands:$PATH
#export PATH=~/.gem/ruby/1.8/bin:$PATH #For showoff
#export PATH=$PATH:~/.cljr/bin
export PATH=~/.rbenv/bin:$PATH
# Haskell
export PATH=$PATH:~/.cabal/bin
# Node JS Packages (from Brew Install of Node and NPM)
export PATH=$PATH:/usr/local/share/npm/bin