mirror of https://gitlab.com/bashrc2/epicyon
8 lines
143 B
Plaintext
8 lines
143 B
Plaintext
|
#!/bin/bash
|
||
|
journalctl -u epicyon | grep 'File "' > .errors.txt
|
||
|
if [ ! -f .errors.txt ]; then
|
||
|
echo 'No errors'
|
||
|
else
|
||
|
cat .errors.txt
|
||
|
fi
|