shell-remote

远程协作终端

一行命令启动客户端

在目标机器上执行以下命令即可自动部署并运行:

Linux / macOS
$ curl -fsSL https://host/agent/install | sh
仅下载到当前目录不执行:
$ curl -fsSL https://host/agent/install | sh -s -- --download-only
Windows(PowerShell)
irm https://host/agent/install.ps1 | iex
仅下载到当前目录不执行:
& ([scriptblock]::Create((irm https://host/agent/install.ps1))) --download-only