mirror of
https://github.com/AuxXxilium/arv-v-dsm.git
synced 2024-11-23 23:10:58 +07:00
12 lines
324 B
Bash
12 lines
324 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
HTML="<HTML><BODY><H1><CENTER>Please wait while Virtual DSM is installing...</CENTER></H1></BODY></HTML>"
|
|
RESPONSE="HTTP/1.1 200 OK\r\nConnection: close\r\n\r\n$HTML\r\n"
|
|
|
|
while { echo -en "$RESPONSE"; } | nc -lN "${1:-8080}"; do
|
|
echo "================================================"
|
|
done
|
|
|