Skip to content

Instantly share code, notes, and snippets.

@mitchellh
Created January 18, 2010 19:40
Show Gist options
  • Save mitchellh/280295 to your computer and use it in GitHub Desktop.
Save mitchellh/280295 to your computer and use it in GitHub Desktop.
#!/bin/bash
CLASSPATH=something.jar
for f in lib/*.jar; do
CLASSPATH=$CLASSPATH:$f
done
# Debugging: echo $CLASSPATH
rlwrap java -cp $CLASSPATH clojure.main
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment