mirror of
https://github.com/etlegacy/etlegacy-libs.git
synced 2024-11-13 07:57:45 +00:00
7 lines
181 B
Lua
7 lines
181 B
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)
|