Преглед изворни кода

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…
Откажи
Сачувај