Skip to content

Instantly share code, notes, and snippets.

@vietor
Last active September 6, 2016 10:58
Show Gist options
  • Save vietor/f2aa5f7091453abca827c5e86be3b92a to your computer and use it in GitHub Desktop.
Save vietor/f2aa5f7091453abca827c5e86be3b92a to your computer and use it in GitHub Desktop.
Bash Profile
#!/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