ref: b37ab4e0f47cd7cee1e6f87ecdedf4cc4690d55c dir: /lua/test/env.lua/
-- read environment variables as if they were global variables local f=function (t,i) return os.getenv(i) end setmetatable(getfenv(),{__index=f}) -- an example print(a,USER,PATH)