class Byebug::ShowCommand

def execute

def execute
  return print ShowCommand.help(nil) unless @match[1]
  args = @match[1].split(/[ \t]+/)
  param = args.shift
  subcmd = find(Subcommands, param)
  if subcmd
    print "%s\n" % show_setting(subcmd.name)
  else
    print "Unknown show command #{param}\n"
  end
end