/ Published in: Bash
This sets the classpath for scala in the lib directory.
Expand |
Embed | Plain Text
#!/bin/bash export CLASSPATH=`pwd` for f in *.jar; do export CLASSPATH=$CLASSPATH:`pwd`/$f; done
You need to login to post a comment.
