File indexing completed on 2024-05-12 16:45:17

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