mirror of
https://github.com/civetweb/civetweb
synced 2025-03-28 21:13:27 +00:00

Modify example used to investigate #529 Document CGI will not work for systems without fork (#584)
17 lines
237 B
Bash
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"
|
|
|
|
|