7 lines
295 B
Bash
Executable file
7 lines
295 B
Bash
Executable file
#!/bin/bash
|
|
mkdir -p $1/{log,shared}
|
|
cd $1/shared
|
|
pwd
|
|
( sleep 180; dump_circuits > ../log/server-circuits.txt ) &
|
|
donar -a dup2 -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
|