Ensemble de fonctions pratiques pour programme java
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
456 B

#!/bin/bash
# Title : start_dodwand.sh
# Role : script for launching the DoDWAN daemon
# Syntax : ./start_dodwand.sh [-Dkey=value ...]
DODWAN_VERSION=1.0.1
DODWAN_ROOT=${HOME}/DoDWAN
if [ "${HOSTNAME}" == "" ] ; then
echo "Variable HOSTNAME not defined."
exit 1
fi
java -Ddodwan.root=${DODWAN_ROOT} \
-Ddodwan.host=${HOSTNAME} \
$* -cp ./dodwan-${DODWAN_VERSION}.jar:Chat.jar -Ddodwan.announce_period=1 network.chat.LaunchChat