forked from hummypkg/webif
9 lines
107 B
Plaintext
9 lines
107 B
Plaintext
|
#!/mod/bin/jimsh
|
||
|
|
||
|
puts "Content-type: text/plain\n"
|
||
|
|
||
|
foreach f [dict keys $env] {
|
||
|
puts "$f = $env($f)"
|
||
|
}
|
||
|
|