File indexing completed on 2024-05-19 16:18:12

0001 #!/bin/sh
0002 EXE=skgtestimportpdf
0003 
0004 
0005 #initialisation
0006 . "`dirname \"$0\"`/init.sh"
0007 
0008 "${EXE}"
0009 rc=$?
0010 if [ $rc != 0 ] ; then
0011         exit $rc
0012 fi
0013 
0014 exit 0