screen-manager-tui 1.0.0 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,19 +17,27 @@ SSH 登录后的交互式 GNU Screen 会话管理器。基于 Ink (React for CLI
|
|
|
17
17
|
|
|
18
18
|
## 安装
|
|
19
19
|
|
|
20
|
+
推荐通过 npm 全局安装:
|
|
21
|
+
|
|
20
22
|
```bash
|
|
21
23
|
npm install -g screen-manager-tui
|
|
22
24
|
```
|
|
23
25
|
|
|
24
|
-
|
|
26
|
+
安装后即可使用 `sm` 命令。
|
|
27
|
+
|
|
28
|
+
<details>
|
|
29
|
+
<summary>从源码安装</summary>
|
|
25
30
|
|
|
26
31
|
```bash
|
|
27
|
-
|
|
32
|
+
git clone https://github.com/m2kar/sm.git
|
|
33
|
+
cd sm
|
|
28
34
|
npm install
|
|
29
35
|
npm run build
|
|
30
|
-
|
|
36
|
+
npm link
|
|
31
37
|
```
|
|
32
38
|
|
|
39
|
+
</details>
|
|
40
|
+
|
|
33
41
|
## 使用
|
|
34
42
|
|
|
35
43
|
```bash
|