瀏覽代碼

added a quit function to the shell environment, for obvious purposes

pull/1/head
XeonSquared 4 年之前
父節點
當前提交
ec5d938a64
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. +3
    -0
      lib/shell.lua

+ 3
- 0
lib/shell.lua 查看文件

@@ -21,6 +21,9 @@ end
function shell.interactive()
local shenv = setmetatable({}, {__index=shindex})
local run = true
function shenv.quit()
run = false
end
while run do
io.write(string.format("\27[32m%s:%s>\27[0m ",os.getenv("HOSTNAME") or "localhost",(os.getenv("PWD") or _VERSION)))
local input = io.read()


Loading…
取消
儲存