]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb/src/third_party/lua-5.1.5/test/env.lua
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / jaegertracing / opentelemetry-cpp / third_party / prometheus-cpp / 3rdparty / civetweb / src / third_party / lua-5.1.5 / test / env.lua
1 -- read environment variables as if they were global variables
2
3 local f=function (t,i) return os.getenv(i) end
4 setmetatable(getfenv(),{__index=f})
5
6 -- an example
7 print(a,USER,PATH)