This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
software:oowow:how-to:check-oowow-images-compatibles [2023/09/13 23:03] hyphop [Online] |
software:oowow:how-to:check-oowow-images-compatibles [2023/09/13 23:09] (current) hyphop [Check OOWOW Images Compatibles] |
||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ~~tag> | ||
+ | |||
====== Check OOWOW Images Compatibles ====== | ====== Check OOWOW Images Compatibles ====== | ||
Line 7: | Line 9: | ||
==== XZ format ==== | ==== XZ format ==== | ||
- | ```sh | + | ```shell |
- | IMAGE_URL=http:// | + | curl -s -jkLf -r-4096 $IMAGE_URL | xz -dc | grep ^match -B2 -A7 || echo NOT_OKAY |
- | curl -s -jkLf -r-4096 $IMAGE_URL | + | |
``` | ``` | ||
```shell oowow-compitables-image-check-example | ```shell oowow-compitables-image-check-example | ||
- | curl -s -jkLf -r-4096 | + | IMAGE_URL=http:// |
+ | curl -s -jkLf -r-4096 IMAGE_URL | ||
``` | ``` | ||
- |