]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb/test/linux_stderr.cgi
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / jaegertracing / opentelemetry-cpp / third_party / prometheus-cpp / 3rdparty / civetweb / test / linux_stderr.cgi
1 #!/bin/bash
2
3 printf "Content-Type: text/plain\r\n"
4 printf "\r\n"
5
6 echo "This is a shell script called by CGI"
7
8 for ((number=1;number < 5000;number++))
9 {
10 echo "Write $number to stdout"
11 echo "Write $number to stderr" 1>&2
12 }
13
14 echo "done"
15
16