This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
software:oowow:how-to:check-oowow-images-compatibles [2023/09/13 22:55] hyphop created |
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 ====== | ||
| WIP: | WIP: | ||
| + | ===== Online ===== | ||
| + | |||
| + | ==== XZ format ==== | ||
| + | |||
| + | ```shell | ||
| + | curl -s -jkLf -r-4096 $IMAGE_URL | xz -dc | grep ^match -B2 -A7 || echo NOT_OKAY | ||
| + | ``` | ||
| + | ```shell oowow-compitables-image-check-example | ||
| + | IMAGE_URL=http:// | ||
| + | curl -s -jkLf -r-4096 IMAGE_URL | xz -dc | grep ^match -B2 -A7 && echo OKAY | ||
| + | ``` | ||