ref: 4a9700bb8e026ea6d889284f840846f602cac23e
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)