Hi Blake,
> -------------------------------
>
> #!/bin/bash
>
> # This script allows the running of a Groovy file in the context of the
> # entire system.
>
> JAR_PATH=`dirname $0`/../lib
> CLASSES_PATH=`dirname $0`/../build/web/WEB-INF/classes
>
Just a quick word of caution not directly related to the approach
- You might want to add double quotes around $0 to handle paths that
have spaces in them. Also, it is preferable to use $(dirname "$0")
instead of backticks. Backticks can cause certain unexpected problems
when either being nested or when handling values that have quotes.
Thanks
--
Thank you
Balachandran Sivakumar