You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
if [ -L "$0" ]; then
|
|
THIS_FILE=`readlink "$0"`
|
|
else
|
|
THIS_FILE=$0
|
|
fi
|
|
DIR=`dirname "$THIS_FILE"`
|
|
|
|
java -jar "$DIR/../vendor/rhino/js.jar" "$DIR/pegjs-main.js" "$DIR" "$@"
|