Selaa lähdekoodia

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

pull/1/head
XeonSquared 4 vuotta sitten
vanhempi
commit
ec5d938a64
1 muutettua tiedostoa jossa 3 lisäystä ja 0 poistoa
  1. +3
    -0
      lib/shell.lua

+ 3
- 0
lib/shell.lua Näytä tiedosto

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


Loading…
Peruuta
Tallenna