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