ÿØÿà JFIF H H ÿÛ C GIF89;
| System: Linux server378.web-hosting.com 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64 Current Path : /opt/alt/ruby23/lib64/ruby/gems/2.3.0/gems/ruby-lsapi-5.6/examples/ |
| Current File : //opt/alt/ruby23/lib64/ruby/gems/2.3.0/gems/ruby-lsapi-5.6/examples/testlsapi.rb |
#!/opt/alt/ruby23/bin/ruby
require 'lsapi'
$count = 0;
while LSAPI.accept != nil
print "HTTP/1.0 200 OK\r\nContent-type: text/html\r\n\r\nHello World! \##{$count}<br>\r\n"
ENV.each_pair {|key, value| print "#{key} is #{value}<br>\r\n" }
$count = $count + 1
end