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.

17 lines
177 B

#!/bin/bash
function usage {
echo "$0 [server-log]"
exit 1
}
server_log=$1
if [ -z $server_log ]
then
usage
fi
./start.sh $server_log >/dev/null 2>&1 &