File comandi per Windows
@echo off
if "%1"=="" goto end
if "%2"=="" goto end
cd "%1"
command.com /c java Master "%2" rieletto > master.log
:end
File comandi per Linux
if test $1
then
if test $2
then
cd $1
java Master $2 rieletto > master.log &
fi
fi