local utils = {}
function utils.file_exists(name)
local f=io.open(name,"r")
if f~=nil then io.close(f) return true else return false end
end
function utils.home()
return os.getenv("HOME") .. "/"
return utils