mirror of
https://github.com/c-cube/moonpool.git
synced 2025-12-09 20:55:35 -05:00
10 lines
128 B
Bash
Executable file
10 lines
128 B
Bash
Executable file
#!/bin/bash
|
|
|
|
PORT=1235
|
|
./echo_server.exe -p $PORT &
|
|
|
|
echo "run echo client -p $PORT $@"
|
|
|
|
./echo_client.exe -p $PORT $@
|
|
|
|
kill %1
|