Move scripts into their own directory.

This commit is contained in:
Colin Jones
2010-11-01 20:09:15 -05:00
parent fa9b51743c
commit baecf7edb4
7 changed files with 2 additions and 4 deletions

9
script/run Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/sh
CLASSPATH=src
for f in lib/*.jar; do
CLASSPATH=$CLASSPATH:$f
done
java -cp "$CLASSPATH" clojure.main -e '(load "path_to_enlightenment")' -e "(do (in-ns 'path-to-enlightenment) (run))"
echo