mirror of
				https://github.com/casjaysdevdocker/tools
				synced 2025-10-30 20:02:12 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			163 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			163 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env python
 | |
| import sys
 | |
| import os
 | |
| 
 | |
| print "Content-Type: text/html\n\n"
 | |
| 
 | |
| for name, value in os.environ.items():
 | |
|     print "%s\t= %s <br/>" % (name, value)
 |