11 lines
151 B
Bash
Executable File
11 lines
151 B
Bash
Executable File
#!/bin/dash
|
|
|
|
scriptdir=`dirname $0`
|
|
prog=$scriptdir/compare-wrapper-$1
|
|
if [ -e "$prog" ] ; then
|
|
shift
|
|
exec "$prog" "$@"
|
|
else
|
|
echo 'JSE'
|
|
fi
|