class Byebug::HistoryCommand

def execute

def execute
  history = processor.interface.history
  size, = get_int(@match[:num_cmds], 'history', 1) if @match[:num_cmds]
  puts history.to_s(size)
end