Skip to content

Commit eb85100

Browse files
committed
Added install section to README.md
1 parent b266275 commit eb85100

File tree

1 file changed

+89
-0
lines changed

1 file changed

+89
-0
lines changed

README.md

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,92 @@ $ knox creds select
77
$ knox creds last-used
88
$ knox clean creds sso -a
99
```
10+
11+
## Install
12+
13+
<details>
14+
<summary>Darwin</summary>
15+
16+
### Intel & ARM
17+
18+
```shell
19+
brew tap null93/tap
20+
brew install aws-knox
21+
```
22+
</details>
23+
24+
<details>
25+
<summary>Debian</summary>
26+
27+
### amd64
28+
29+
```shell
30+
curl -sL -o ./aws-knox_1.0.0_amd64.deb https://github.com/null93/aws-knox/releases/download/1.0.0/aws-knox_1.0.0_amd64.deb
31+
sudo dpkg -i ./aws-knox_1.0.0_amd64.deb
32+
rm ./aws-knox_1.0.0_amd64.deb
33+
```
34+
35+
### arm64
36+
37+
```shell
38+
curl -sL -o ./aws-knox_1.0.0_arm64.deb https://github.com/null93/aws-knox/releases/download/1.0.0/aws-knox_1.0.0_arm64.deb
39+
sudo dpkg -i ./aws-knox_1.0.0_arm64.deb
40+
rm ./aws-knox_1.0.0_arm64.deb
41+
```
42+
</details>
43+
44+
<details>
45+
<summary>Red Hat</summary>
46+
47+
### aarch64
48+
49+
```shell
50+
rpm -i https://github.com/null93/aws-knox/releases/download/1.0.0/aws-knox-1.0.0-1.aarch64.rpm
51+
```
52+
53+
### x86_64
54+
55+
```shell
56+
rpm -i https://github.com/null93/aws-knox/releases/download/1.0.0/aws-knox-1.0.0-1.x86_64.rpm
57+
```
58+
</details>
59+
60+
<details>
61+
<summary>Alpine</summary>
62+
63+
### aarch64
64+
65+
```shell
66+
curl -sL -o ./aws-knox_1.0.0_aarch64.apk https://github.com/null93/aws-knox/releases/download/1.0.0/aws-knox_1.0.0_aarch64.apk
67+
apk add --allow-untrusted ./aws-knox_1.0.0_aarch64.apk
68+
rm ./aws-knox_1.0.0_aarch64.apk
69+
```
70+
71+
### x86_64
72+
73+
```shell
74+
curl -sL -o ./aws-knox_1.0.0_x86_64.apk https://github.com/null93/aws-knox/releases/download/1.0.0/aws-knox_1.0.0_x86_64.apk
75+
apk add --allow-untrusted ./aws-knox_1.0.0_x86_64.apk
76+
rm ./aws-knox_1.0.0_x86_64.apk
77+
```
78+
</details>
79+
80+
<details>
81+
<summary>Arch</summary>
82+
83+
### aarch64
84+
85+
```shell
86+
curl -sL -o ./aws-knox-1.0.0-1-aarch64.pkg.tar.zst https://github.com/null93/aws-knox/releases/download/1.0.0/aws-knox-1.0.0-1-aarch64.pkg.tar.zst
87+
sudo pacman -U ./aws-knox-1.0.0-1-aarch64.pkg.tar.zst
88+
rm ./aws-knox-1.0.0-1-aarch64.pkg.tar.zst
89+
```
90+
91+
### x86_64
92+
93+
```shell
94+
curl -sL -o ./aws-knox-1.0.0-1-x86_64.pkg.tar.zst https://github.com/null93/aws-knox/releases/download/1.0.0/aws-knox-1.0.0-1-x86_64.pkg.tar.zst
95+
sudo pacman -U ./aws-knox-1.0.0-1-x86_64.pkg.tar.zst
96+
rm ./aws-knox-1.0.0-1-x86_64.pkg.tar.zst
97+
```
98+
</details>

0 commit comments

Comments
 (0)