Current Path : /proc/thread-self/root/proc/self/root/opt/alt/ruby24/lib64/ruby/gems/2.4.0/gems/ruby-lsapi-5.6/examples/ |
Current File : //proc/thread-self/root/proc/self/root/opt/alt/ruby24/lib64/ruby/gems/2.4.0/gems/ruby-lsapi-5.6/examples/testlsapi.rb |
#!/opt/alt/ruby24/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