civetweb/test/linux_stderr.cgi
bel2125 1a7f248e23 Improve documentation and error messages for CGI
Modify example used to investigate #529
Document CGI will not work for systems without fork (#584)
2018-01-28 22:34:33 +01:00

17 lines
237 B
Bash

#!/bin/bash
printf "Content-Type: text/plain\r\n"
printf "\r\n"
echo "This is a shell script called by CGI"
for ((number=1;number < 5000;number++))
{
echo "Write $number to stdout"
echo "Write $number to stderr" 1>&2
}
echo "done"