blob: d230c4c1999214fc7235f067b860fdf49224bd41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
kernel=`uname -s`
if test "${kernel#*CYGWIN}" != "$kernel"
then
jarpath=`cygpath -w $(kpsewhich --progname=texosquery --format=texmfscripts texosquery.jar)`
else
jarpath=`kpsewhich --progname=texosquery --format=texmfscripts texosquery.jar`
fi
java -jar "$jarpath" "$@"
|