File: printenv

package info (click to toggle)
apache 1.3.0-5
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 6,488 kB
  • ctags: 6,702
  • sloc: ansic: 47,562; sh: 3,221; makefile: 1,382; perl: 1,346; cpp: 55
file content (7 lines) | stat: -rw-r--r-- 126 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
#!/usr/local/bin/perl

print "Content-type: text/html\n\n";
while (($key, $val) = each %ENV) {
	print "$key = $val<BR>\n";
}