10 lines
253 B
Bash
10 lines
253 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Change the current working directory to the location of the present file
|
||
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
||
|
|
||
|
ret=0
|
||
|
exec 3>&1; $(java -jar "$DIR"/bin/da_proc.jar "$@" >&3); ret=$?; exec 3>&-
|
||
|
|
||
|
exit $ret
|