class Byebug::InfoCommand::FileCommand

def info_file_basic(file)

def info_file_basic(file)
  path = File.expand_path(file)
  return unless File.exist?(path)
  s = n_lines(path) == 1 ? "" : "s"
  "#{path} (#{n_lines(path)} line#{s})"
end