-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathall.sh
More file actions
16 lines (12 loc) · 708 Bytes
/
all.sh
File metadata and controls
16 lines (12 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/zsh
set -x
source env.sh
keytool -genkeypair -keyalg DSA -keysize 1024 -keystore ${KEYSTORE} -alias myself -storepass foobar
${JAVA} "${JAVA_OPTS[@]}" lircom.Peer ${PORT_NUM} &
sleep 1
${JAVA} "${JAVA_OPTS[@]}" -jar target/lircom-3-jar-with-dependencies.jar lircom.Chat Michael &
${JAVA} "${JAVA_OPTS[@]}" -jar target/lircom-3-jar-with-dependencies.jar lircom.Chat John &
${JAVA} "${JAVA_OPTS[@]}" solitaire.Game dealer localhost:${PORT_NUM} &
${JAVA} "${JAVA_OPTS[@]}" solitaire.Game random localhost:${PORT_NUM} &
${JAVA} "${JAVA_OPTS[@]}" "${APPLE_JOGL_OPTS[@]}" impact.Impact3D localhost:${PORT_NUM} &
${JAVA} "${JAVA_OPTS[@]}" "${APPLE_JOGL_OPTS[@]}" impact.Impact3D localhost:${PORT_NUM} &