diff options
author | Yargo <yargo@circumlunar.space> | 2018-05-04 11:51:25 +0000 |
---|---|---|
committer | Yargo <yargo@circumlunar.space> | 2018-05-04 11:51:25 +0000 |
commit | 82d1d557911ca4ab8b31d74986ad90000e566985 (patch) | |
tree | 714a8c554ecac3044ff11f91585d9a69bdf3a00f /telem.lua | |
parent | add who command and telem.lua version (diff) |
replace who by w: more useful!
Diffstat (limited to 'telem.lua')
-rwxr-xr-x | telem.lua | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ #!/usr/bin/lua5.2 -telemver = "0.2 // 2018-05-04" +telemver = "0.3 // 2018-05-04" io = require("io") os = require("os") @@ -215,7 +215,7 @@ function do_stub() end function do_who() - os.execute("/usr/bin/who") + os.execute("/usr/bin/w") end -- MAIN PROGRAM BODY BELOW |