#!/bin/csh 
# Startup script for csh shell (in unix environments)
# allowing server to use up to 220 sockets (for full version)
 limit openfiles 220
# ulimit -u 220 for sh shell
#jre or java on java for java to start java virtual maschine
#9999 is tcp port 
# errors is file for standard output (where uncathed errors and exceptions are logged)
# you can use nice to prioritize the process
#nice jre OKserver 9999 >> errors &
 nice java OKserver 9999 >> errors &


