# File lib/bat.rb, line 115
        def initialize()
            $options = OpenStruct.new

            $opts = OptionParser.new{ |$opts|
                $opts.banner = "Usage: #{SCRIPT} [options]"

                $opts.on_tail("-h", "--help", "Show this message"){
                    puts $opts
                    exit
                }
            }
        end