epicyon/scripts/images

8 lines
256 B
Plaintext
Raw Normal View History

2023-09-12 16:27:16 +00:00
#!/bin/bash
2026-05-07 12:26:36 +00:00
journalctl -u epicyon | grep 'image binary\|favicon is not an image\|image size before\|watermark failed\|image metadata removal\|media saved to' > .image.txt
2023-09-12 16:27:16 +00:00
if [ ! -f .image.txt ]; then
echo 'No image warnings'
else
cat .image.txt
fi