mirror of
				https://github.com/dockersrc/scripts
				synced 2025-10-31 02:02:13 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			282 B
		
	
	
	
		
			Ruby
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			282 B
		
	
	
	
		
			Ruby
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env ruby
 | |
| # -*- coding: None -*-
 | |
| 
 | |
| require 'cgi'       //cgi file to create a simple cgi object.
 | |
|   cgi = CGI.new      //instantiating a cgi object.
 | |
|   puts cgi.header   //thats telling the server about the type(html).
 | |
|   puts "hello"      // thats the output on the browser.
 |