bettola/assets/scripts/bin/ssh.lua
Ritchie Cunningham 388c6429cf [Change] Remove hybrid local/remote network model
Client architecture has been refactored to be fully
server-authoritative, remove the previous "hybrid" model that supported
both local and remote command execution, that was a stupid idea.

- Client now connects to server on startup.
- The local command processor and VFS have been removed from the
  Terminal class.
- All command processing is now handled by the server.
- The client is now just a thin client essentially

I'll in the future enable single player mode by running the server on
the local machine in a separate thread.
2025-09-23 20:54:39 +01:00

5 lines
159 B
Lua

-- /bin/ssh - Connects to a remote host.
local target = arg[1]
if not target then return "ssh: missing operand" end
return { action = "ssh", target = target }