13 lines
		
	
	
		
			189 B
		
	
	
	
		
			Ruby
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			189 B
		
	
	
	
		
			Ruby
		
	
	
		
			Executable File
		
	
	
	
	
| require "pathname"
 | |
| 
 | |
| $LOAD_PATH.unshift(File.expand_path("../../lib", Pathname.new(__FILE__).realpath))
 | |
| 
 | |
| require "hbc"
 | |
| 
 | |
| begin
 | |
|   Hbc::CLI.process(ARGV)
 | |
| rescue Interrupt
 | |
|   puts
 | |
|   exit 130
 | |
| end
 | 
