This repository was archived by the owner on Mar 27, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -22,18 +22,22 @@ These analyses can be performed on a single image, or a diff can be performed on
22
22
23
23
### macOS
24
24
``` shell
25
- curl -LO https://storage.googleapis.com/container-diff/latest/container-diff-darwin-amd64 && chmod +x container-diff-darwin-amd64 && sudo mv container-diff-darwin-amd64 /usr/local/bin/container-diff
25
+ curl -LO https://storage.googleapis.com/container-diff/latest/container-diff-darwin-amd64 && \
26
+ sudo install container-diff-darwin-amd64 /usr/local/bin/container-diff
26
27
```
27
28
28
29
### Linux
29
30
``` shell
30
- curl -LO https://storage.googleapis.com/container-diff/latest/container-diff-linux-amd64 && chmod +x container-diff-linux-amd64 && sudo mv container-diff-linux-amd64 /usr/local/bin/container-diff
31
+ curl -LO https://storage.googleapis.com/container-diff/latest/container-diff-linux-amd64 && \
32
+ sudo install container-diff-linux-amd64 /usr/local/bin/container-diff
31
33
```
32
34
33
35
OR, if you want to avoid using sudo:
34
36
35
37
``` shell
36
- curl -LO https://storage.googleapis.com/container-diff/latest/container-diff-linux-amd64 && chmod +x container-diff-linux-amd64 && mkdir -p $HOME /bin && export PATH=$PATH :$HOME /bin && mv container-diff-linux-amd64 $HOME /bin/container-diff
38
+ curl -LO https://storage.googleapis.com/container-diff/latest/container-diff-linux-amd64 && \
39
+ mkdir -p " $HOME /bin" && export PATH=" $PATH :$HOME /bin" && \
40
+ install container-diff-linux-amd64 $HOME /bin/container-diff
37
41
```
38
42
39
43
There is also an [ Arch Linux package] ( https://www.archlinux.org/packages/community/x86_64/container-diff/ ) . You can install by running:
You can’t perform that action at this time.
0 commit comments