添加腳本輸出了一些我在Linux的一個shell腳本輸出10在Lua
我想寫在Lua腳本,它增加了5到我的shell腳本的輸出。我如何使用shell腳本的輸出?
這是我曾嘗試 -
print(5 + tonumber(os.execute('./sample')))
這是輸出 -
10
lua: temp.lua:2: bad argument #2 to 'tonumber' (number expected, got string)
stack traceback:
[C]: in function 'tonumber'
temp.lua:2: in main chunk
[C]: in ?
你需要io.popen。 – lhf