6 lines
308 B
Bash
Executable file
6 lines
308 B
Bash
Executable file
#!/bin/bash
|
|
mkdir -p $1/{log,shared}
|
|
cd $1/shared
|
|
#( sleep 180; dump_circuits > ../log/server-circuits.txt ) &
|
|
donar -a rr -l 8 -b -h -d 1,1 -s -e 9000 > ../log/server-donar-stdout.log 2> ../log/server-donar-stderr.log &
|
|
udpecho -p 9000 > ../log/server-udpecho-stdout.log 2> ../log/server-udpecho-stderr.log
|