<> <> <> <<>> DIRECTORY Commander USING [CommandProc], CommandTool USING [DoCommand], ComputeServerServer USING [Register]; RCServerImpl: CEDAR PROGRAM IMPORTS CommandTool, ComputeServerServer ~ BEGIN ExecuteRemoteCommand: Commander.CommandProc ~ { result _ CommandTool.DoCommand[commandLine: cmd.commandLine, parent: cmd]; }; ComputeServerServer.Register[key: "RemoteCommand", proc: ExecuteRemoteCommand]; END.