1
0
mirror of git://projects.qi-hardware.com/nn-usb-fpga.git synced 2025-01-10 16:40:16 +02:00
nn-usb-fpga/sie_fs/root/scripts/lua/test/env.lua
2010-09-21 17:05:23 -05:00

8 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)