From 2737fc9a36789ae97a90c8246387c482f6738892 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 1 Nov 2021 10:27:20 +0000 Subject: [PATCH] Script to show exceptions --- scripts/exceptions | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 scripts/exceptions 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