mirror of
https://github.com/c-cube/tiny_httpd.git
synced 2025-12-06 11:15:35 -05:00
12 lines
168 B
Bash
Executable file
12 lines
168 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
PORT=8082
|
|
|
|
./sse_server.exe -p $PORT &
|
|
PID=$!
|
|
|
|
sleep 0.1
|
|
./sse_client.exe -p $PORT --alarm=1 /count | tr -d '\r' || true
|
|
|
|
kill $PID
|
|
echo "success"
|