@echo off rem Description : QUANTUM time estimator rem Syntax : quantime cmb_file rem cmb_file - Quantum cmb file to estimate rem Workstation type : NT rem Last modification: 30 MAR 98 1.0 Initial version -DJH setlocal rem Create bat file to call qsenv.bat in the same directory as rem this bat file. echo call %0 | sed -e "s/[qQ][uU][aA][nN][tT][iI][mM][eE]/qsenv/" >cqsenv.bat call cqsenv.bat del cqsenv.bat if "%1" == "?" goto Help if "%1" == "/?" goto Help if "%1" == "\?" goto Help if "%1" == "-h" goto Help if "%1" == "-v" goto Version goto StartTime :Help echo. echo Syntax echo quantime [-h or -v] [cmb_file] echo version: %QS_VERSION% $Revision: 1.1 $ echo. goto Exit :Version echo. echo quantime.bat version: %QS_VERSION% $Revision: 1.1 $ echo. goto Exit echo. echo Warning: syntax requires the file name. echo. goto Exit :Starttime call %QS_BIN%\quantimx.exe %1 :Exit goto End :End endlocal