@echo off rem Purpose: run pc2 Netcat program rem Author : pc2@ecs.csus.edu rem $HeadURL$ rem Windows 2000 and beyond syntax set PC2BIN=%~dp0 if exist %PC2BIN%\pc2env.bat goto :continue rem fallback to path (or current directory) set PC2BIN=%0\.. if exist %PC2BIN%\pc2env.bat goto :continue rem else rely on PC2INSTALL variable set PC2BIN=%PC2INSTALL%\bin if exist %PC2BIN%\pc2env.bat goto :continue echo. echo ERROR: Could not locate scripts. echo. echo Please set the variable PC2INSTALL to the location of echo the VERSION file (ex: c:\pc2-9.0.0) echo. pause goto :end :continue call %PC2BIN%\pc2env.bat java -Xms64M -Xmx768M -cp %libdir%\pc2.jar edu.csus.ecs.pc2.tools.Netcat %1 %2 %3 %4 %5 %6 %7 :end rem eof pc2nc.bat $Id$