ref: 9b643d7b3bcc7050f15ea3f1d74905679c32c997
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)