#!/bin/sh # # Purpose: start pc2 # Author : pc2@ecs.csus.edu # . `dirname $0`/pc2env # MacOS or not if [ -f /mach_kernel ]; then # set our dock name (otherwise defaults to Starter) PC2XOPS="-Xdock:name=`basename $0`" else PC2XOPS="" fi java $PC2XOPS -Xms64M -Xmx768M -cp "$libdir/*" edu.csus.ecs.pc2.Starter $* # eof