1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-23 00:00:06 +01:00
libwebsockets/test-server/lws-cgi-test.sh

17 lines
213 B
Bash
Raw Normal View History

#!/bin/sh
echo "lwstest script stdout"
>&2 echo "lwstest script stderr"
echo "REQUEST_METHOD=$REQUEST_METHOD"
if [ "$REQUEST_METHOD" = "POST" ] ; then
read line
echo "read=\"$line\""
fi
echo "done"
exit 0