repo.or.cz
/
syslinux-debian
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add memtest support.
[syslinux-debian/hramrach.git]
/
com32
/
lua
/
test
/
env.lua
blob
9e62a57fbf0865170eeae3a38464044716c9fa5b
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
)