You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -22,7 +24,7 @@ A command line tool for SafeU (https://safeu.a2os.club).
22
24
23
25
## Install
24
26
25
-
> If you are in China mainland, the install method in [China mainland optimized](#china-mainland-optimized) is a better choice.
27
+
> If you are in China mainland, the install methods in [China mainland optimized](#china-mainland-optimized) is a better choice.
26
28
27
29
> NOTICE: The following methods would download a pre-compiled safeu-cli binary file which is ONLY for 64-bit Linux. If you are using a different architecture or OS, just check the [Compile](#compile) section below to build your own binary package.
28
30
@@ -42,20 +44,36 @@ $ sh -c "$(wget -qO- https://raw.githubusercontent.com/NUAA-Open-Source/safeu-cl
42
44
43
45
Congratulations, you have successfully installed the `safeu-cli` tool :tada:
44
46
47
+
### Install safeu-cli just for current user
48
+
49
+
via curl:
50
+
51
+
```bash
52
+
$ sh -c "$(curl -fsSL https://raw.githubusercontent.com/NUAA-Open-Source/safeu-cli/master/install.sh) --local"
53
+
```
54
+
55
+
via wget:
56
+
57
+
```bash
58
+
$ sh -c "$(wget -qO- https://raw.githubusercontent.com/NUAA-Open-Source/safeu-cli/master/install.sh) --local"
59
+
```
60
+
45
61
### China mainland optimized
46
62
47
63
via curl:
48
64
49
65
```bash
50
-
$ sh -c "$(curl -fsSL https://gitee.com/A2OS/safeu-cli/raw/master/install.sh) cn"
66
+
$ sh -c "$(curl -fsSL https://gitee.com/A2OS/safeu-cli/raw/master/install.sh)--cn"
51
67
```
52
68
53
69
via wget:
54
70
55
71
```bash
56
-
$ sh -c "$(wget -qO- https://gitee.com/A2OS/safeu-cli/raw/master/install.sh) cn"
72
+
$ sh -c "$(wget -qO- https://gitee.com/A2OS/safeu-cli/raw/master/install.sh)--cn"
57
73
```
58
74
75
+
> If you want to install `safeu-cli` locally by using the china mainland optimized script, just add `--local` option after the `--cn`.
0 commit comments