Welcome to mirror list, hosted at ThFree Co, Russian Federation.

env.lua « test « lua-5.1.2 « host « src - github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9e62a57fbf0865170eeae3a38464044716c9fa5b (plain)
1
2
3
4
5
6
7
-- 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)