Skip to content

Instantly share code, notes, and snippets.

@mig
Created January 19, 2009 07:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mig/48896 to your computer and use it in GitHub Desktop.
Save mig/48896 to your computer and use it in GitHub Desktop.
#!/bin/sh
export SRC=/Users/mig/src
export CLOJURE=$SRC/clojure
export CLASSPATH=$CLOJURE/clojure-contrib/clojure-contrib.jar:$CLOJURE/clojure-trunk/clojure.jar
for file in $SRC/jars/*.jars; do
JARS=$JARS:$file
done
CLASSPATH=$CLASSPATH$JARS
java -cp $CLASSPATH jline.ConsoleRunner clojure.lang.Repl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment