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:04] hyphop [XZ format] |
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 8: | Line 10: | ||
```shell | ```shell | ||
- | curl -s -jkLf -r-4096 $IMAGE_URL | xz -dc | grep ^match -B2 -A7 | + | curl -s -jkLf -r-4096 $IMAGE_URL | xz -dc | grep ^match -B2 -A7 || echo NOT_OKAY |
``` | ``` | ||
```shell oowow-compitables-image-check-example | ```shell oowow-compitables-image-check-example | ||
IMAGE_URL=http:// | IMAGE_URL=http:// | ||
- | curl -s -jkLf -r-4096 IMAGE_URL | xz -dc | grep ^match -B2 -A7 | + | curl -s -jkLf -r-4096 IMAGE_URL | xz -dc | grep ^match -B2 -A7 && echo OKAY |
``` | ``` |