unis-sip/hello.sh

6 lines
154 B
Bash
Raw Permalink Normal View History

2025-04-09 08:45:38 +00:00
#!/bin/bash
while :; do
{ echo -ne "HTTP/1.1 200 OK\r\nContent-Length: $(echo -n "Hello, World!")\r\n\r\nHello, World!"; } | nc -l -p 8080 -q 1
done