Skip to content

Instantly share code, notes, and snippets.

@cypher
Created February 11, 2010 11:25
Show Gist options
  • Save cypher/301431 to your computer and use it in GitHub Desktop.
Save cypher/301431 to your computer and use it in GitHub Desktop.
# Java Classpath
if [[ -d "${HOME}/classes/" ]]
then
for jar in ${HOME}/classes/*.jar
do
CLASSPATH="${jar}:${CLASSPATH}"
done
fi
export CLASSPATH
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment