abstract class CmdEntityFileContent
super CmdEntityFile
# File content
var content: nullable String = null is writable
redef fun init_file do
var res = super
if not res isa CmdSuccess then return res
var file = self.file.as(not null)
content = file.to_path.read_all
return res
end
end
src/doc/commands/commands_ini.nit:299,1--313,3