Images script

main
Bob Mottram 2023-09-12 17:27:16 +01:00
parent 5bdd859190
commit 782cee6279
1 changed files with 7 additions and 0 deletions

7
scripts/images 100755
View File

@ -0,0 +1,7 @@
#!/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