class Byebug::SourceCommand
def execute
def execute return puts(self.class.help) if self.class.names.include?(@match[0]) file = File.expand_path(@match[1]).strip return errmsg("File \"#{file}\" not found") unless File.exist?(file) if @state && @state.interface @state.interface.command_queue += File.open(file).readlines else Byebug.run_script(file, @state) end end