view minato2014/env.rb @ 839:962ecb4d0326

check
author ARAKI Tsuyohito <c113007@e.koeki-u.ac.jp>
date Sun, 26 Jul 2015 10:39:13 +0900
parents c02da18b51e3
children
line wrap: on
line source

#!/usr/bin/env ruby
#coding:euc-jp



print "Content-type: text/html\n\n"
print "<html>
    <head>
    <title>環境変数一覧</title>
    </head>
    <body>
    <table align=\"center\" border=\"1\" bordercolor=\"#000099\" cellspacing=\"0\">
    <caption>環境変数一覧</caption>"

ENV.each { |k,v|
#    v = v.gsub(/\w/, "*")                    #サンプルのため非表示(この行を削除してください)
    print "<tr><td>#{k}</td><td>#{v}</td></tr>\n"
}

print"</table>
    </body>
    </html>"

yatex.org