epicyon/scripts/images

8 lines
179 B
Plaintext
Raw Normal View History

2023-09-12 16:27:16 +00:00
#!/bin/bash
journalctl -u epicyon | grep 'image binary\|favicon is not an image' > .image.txt
if [ ! -f .image.txt ]; then
echo 'No image warnings'
else
cat .image.txt
fi