mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-16 18:31:32 +00:00
19 lines
500 B
Bash
Executable File
19 lines
500 B
Bash
Executable File
#!/bin/bash
|
|
|
|
tab="--tab"
|
|
cmd0="bash -c './wesnothd --port 12345 --log-debug=server --log-warning=config';bash"
|
|
cmd1="bash -c './wesnoth --plugin=host.lua --server=localhost:12345 --username=host --nogui --mp-test';bash"
|
|
cmd2="bash -c './wesnoth --plugin=join.lua --server=localhost:12345 --username=join --nogui --mp-test';bash"
|
|
#cmd3="bash -c './client3';bash"
|
|
|
|
foo=""
|
|
|
|
foo+=($tab -e "$cmd0")
|
|
foo+=($tab -e "$cmd1")
|
|
foo+=($tab -e "$cmd2")
|
|
#foo+=($tab -e "$cmd3")
|
|
|
|
gnome-terminal "${foo[@]}"
|
|
|
|
exit 0
|