added an interactive nsh client

This commit is contained in:
Izaya 2017-06-26 12:10:36 +00:00
parent 1a1c7e9bd6
commit de863ae72e
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
function inshc(hA,pO,pW)
write("Address: ")
if hA then print(hA) else hA=readln() end
write("Port: ")
if pO then print(pO) else pO=readln() end
if pW then print("Password provided.") else write("Password (empty for no auth): ") readln("*") end
if pW == "" or pW == nil then nshc(pO,hA) else nshcs(pO,hA,pW) end
end