代码搜索:Lua
找到约 9,588 项符合「Lua」的源代码
代码结果 9,588
www.eeworm.com/read/227241/14436260
jsf lua.jsf
# JOE syntax highlight file for LUA
=Idle
=Bad bold red
=Comment green
=Constant cyan
=Escape bold cyan
=Keyword bold
:idle Idle
* idle
"0" first_digit recolor=-1
"1-9" decimal recolor=-1
www.eeworm.com/read/227241/14436266
in lua.jsf.in
# JOE syntax highlight file for LUA
=Idle
=Bad bold red
=Comment green
=Constant cyan
=Escape bold cyan
=Keyword bold
:idle Idle
* idle
"0" first_digit recolor=-1
"1-9" decimal recolor=-1
www.eeworm.com/read/121688/14742743
syntax lua.syntax
#Nathan Whitehead
#Lua homepage is at http://www.tecgraf.puc-rio.br/lua/
context default
keyword whole and yellow/24
keyword whole end yellow/24
keyword whole nil yellow/24
keyword wh
www.eeworm.com/read/115343/15017022
lib lua.lib
www.eeworm.com/read/492380/1174629
lua main.lua
#!/usr/bin/lua
-- Copyright (C) 2008 OpenRB.com
require('fslib')
data = readlines('/proc/net/arp', 1, false)
io.write(json.encode(data))
www.eeworm.com/read/492380/1174646
lua ping.lua
#!/usr/bin/lua
-- Copyright (C) 2008 OpenRB.com
require('fslib')
data = datajson() or {}
if data.ip then
io.write(proc('ping -c 5 ' .. data.ip .. ' 2>&1', true))
end
www.eeworm.com/read/492380/1174648
lua trace.lua
#!/usr/bin/lua
-- Copyright (C) 2008 OpenRB.com
require('fslib')
data = datajson() or {}
if data.ip then
io.write(proc('traceroute ' .. data.ip .. ' 2>&1', true))
end
www.eeworm.com/read/492380/1174650
lua iperf.lua
#!/usr/bin/lua
-- Copyright (C) 2008 OpenRB.com
require('fslib')
data = datajson() or {}
if data.ip then
io.write(proc('iperf -t 20 -c ' .. data.ip .. ' 2>&1', true))
end
www.eeworm.com/read/492380/1174651
lua main.lua
#!/usr/bin/lua
-- Copyright (C) 2008 OpenRB.com
require('fslib')
io.write(
json.encode(
uci.get_array('firewall')
)
)
www.eeworm.com/read/492380/1174680
lua formfwd.lua
#!/usr/bin/lua
-- Copyright (C) 2008 OpenRB.com
require('fslib')
data = datajson()
cfgvars = {
values = {},
params = {},
zones = {}
}
if (data ~= nil and data['id'] ~= nil) then
cfg = uci.in