mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-12 20:45:28 +08:00
13 lines
344 B
Lua
13 lines
344 B
Lua
|
print("This is how a cmd-line interface could be implemented\nPrint 'exit' to exit.\n")
|
||
|
local answer
|
||
|
repeat
|
||
|
io.write("$>")
|
||
|
io.flush()
|
||
|
answer=io.read()
|
||
|
if answer ~= 'exit' then
|
||
|
local func = assert(loadstring("return " .. answer))
|
||
|
io.write("\n"..tostring(func() or "").."\n");
|
||
|
end--]]
|
||
|
until answer=="exit"
|
||
|
print("Bye\n");
|