mirror of
https://github.com/c-cube/moonpool.git
synced 2025-12-11 21:48:46 -05:00
12 lines
168 B
Bash
Executable file
12 lines
168 B
Bash
Executable file
#!/bin/bash
|
|
|
|
PORT=1235
|
|
./echo_server.exe -p $PORT &
|
|
|
|
echo "run echo client -p $PORT $@"
|
|
|
|
export LC_LANG=C
|
|
export LC_ALL=C
|
|
./echo_client.exe -p $PORT $@ | sort
|
|
|
|
kill %1
|