class Byebug::SourceCommand

def execute

def execute
  return puts(help) unless @match[1]
  file = File.expand_path(@match[1]).strip
  unless File.exist?(file)
    return errmsg(pr("source.errors.not_found", file: file))
  end
  processor.interface.read_file(file)
end