Last active
September 6, 2016 10:58
-
-
Save vietor/f2aa5f7091453abca827c5e86be3b92a to your computer and use it in GitHub Desktop.
Bash Profile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for file in ~/.devenv/*; | |
do | |
if [ -d $file ]; then | |
if [ -d $file/bin ]; then | |
PATH=`(cd $file/bin && pwd)`:$PATH | |
fi | |
fi | |
done | |
export PATH |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment