Removing uneeded file.
[and.git] / PC^2 / pc2 / pc2admin
blobfdeae3847ef27f22a45654aa43ffd11ea6047cac
1 #!/bin/sh
3 # File: pc2admin
4 # Purpose: start client script
5 # Author: pc2 group
6 # E-mail: mailto:pc2@ecs.csus.edu
7 # Revised: Tue Apr 19 20:13:36 PDT 2005
9 # Send e-mail to us if you have questions.. thanks.
12 echo
13 echo "admin - Starting Client (Admin)"
14 echo
17 # Set the path to where Java is installed
18 # (ie the directory that has the bin/ and lib/ directories)
22 # PATH=
23 # CLASSPATH=
26 echo
27 export PATH
28 export CLASSPATH
30 echo PATH=$PATH
31 echo CLASSPATH=$CLASSPATH
32 echo
33 echo Starting pc2...
34 echo
35 echo java -Djava.security.policy=policy.ini pc2.client.Client $*
36 java -Djava.security.policy=policy.ini pc2.client.Client $*
38 # eof pc2admin