From 98064881e419f157e492ac80c8f9728b77379fb3 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 29 Sep 2019 11:07:34 +0100 Subject: [PATCH] Script to show errors --- errors | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 errors diff --git a/errors b/errors new file mode 100755 index 00000000..20108271 --- /dev/null +++ b/errors @@ -0,0 +1,7 @@ +#!/bin/bash +journalctl -u epicyon | grep 'File "' > .errors.txt +if [ ! -f .errors.txt ]; then + echo 'No errors' +else + cat .errors.txt +fi