MegaGlest/mk/linux/mojosetup/lua/test/env.lua

8 lines
181 B
Lua
Raw Normal View History

2010-04-25 05:01:17 +02:00
-- 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)