9 lines
214 B
Bash
9 lines
214 B
Bash
#! /bin/bash
|
|
sleep 3s
|
|
|
|
while true; do
|
|
echo "dialog_list" | nc localhost 58787
|
|
echo "msg Village_Game /work" | nc localhost 58787
|
|
echo "msg Village_Game /harvest" | nc localhost 58787
|
|
sleep 720s
|
|
done |