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