diff options
Diffstat (limited to 'cgi/slow.cgi')
-rwxr-xr-x | cgi/slow.cgi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cgi/slow.cgi b/cgi/slow.cgi new file mode 100755 index 0000000..5ba9f78 --- /dev/null +++ b/cgi/slow.cgi @@ -0,0 +1,4 @@ +#!/bin/sh +echo "Content-Type: text/plain" +echo +set | while read line; do echo $line; sleep 1; done |