mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-16 00:00:07 +01:00
16 lines
213 B
Bash
Executable file
16 lines
213 B
Bash
Executable file
#!/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
|
|
|