-
-
Save alexott/343294 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
@echo off | |
setLocal EnableDelayedExpansion | |
set CLASSPATH=" | |
for /R ./lib %%a in (*.jar) do ( | |
set CLASSPATH=!CLASSPATH!;%%a | |
) | |
set CLASSPATH=!CLASSPATH!" | |
set CLASSPATH=%CLASSPATH%;src;test;config;data | |
echo CLASSPATH=%CLASSPATH% | |
java -Xmx1G -cp %CLASSPATH% jline.ConsoleRunner clojure.main -i run.clj -r |
This file contains hidden or 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
(use '[clojure.contrib.duck-streams :only (spit read-lines reader writer)] | |
'[clojure.contrib def ns-utils pprint repl-utils shell-out]) | |
(require '[clojure.contrib.str-utils2 :as s]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment