diff --git a/scripts/exceptions b/scripts/exceptions new file mode 100644 index 000000000..83c5f554b --- /dev/null +++ b/scripts/exceptions @@ -0,0 +1,7 @@ +#!/bin/bash +journalctl -u epicyon | grep 'EX: ' > .exceptions.txt +if [ ! -f .exceptions.txt ]; then + echo 'No exceptions' +else + cat .exceptions.txt +fi