如何在 Luci openwrt sys.exec() 函数中传递命令行参数?

How to pass command line argumets inside Luci openwrt sys.exec() function ?

我想使用命令行参数执行 sys.exe 函数。我的代码是

var1 = "myname"
var2 = "address"
function btn.write()  
   luci.sys.exec("/bin/register $var1 $var2")
end

我知道这是错误的。如何将参数传递给 Luci OpenWrt 中的 sys.exe 函数?有什么帮助吗?谢谢.

使用简单的字符串连接:

luci.sys.exec("/bin/register" .. $var1 .. " " .. $var2 .. " ")