class EacRubyUtils::Envs::File

def exist?

def exist?
  env.command('stat', path).execute[:exit_code].zero?
end

def initialize(env, path)

def initialize(env, path)
  @env = env
  @path = path
end

def read

def read
  env.command('cat', path).execute!
end