diff --git a/scripts/threads b/scripts/threads new file mode 100755 index 000000000..3ef9c00e4 --- /dev/null +++ b/scripts/threads @@ -0,0 +1,7 @@ +#!/bin/bash +journalctl -u epicyon | grep 'THREAD:' > .threads.txt +if [ ! -f .threads.txt ]; then + echo 'No thread events' +else + cat .threads.txt +fi