mirror of https://gitlab.com/bashrc2/epicyon
8 lines
154 B
Plaintext
8 lines
154 B
Plaintext
|
#!/bin/bash
|
||
|
journalctl -u epicyon | grep 'THREAD:' > .threads.txt
|
||
|
if [ ! -f .threads.txt ]; then
|
||
|
echo 'No thread events'
|
||
|
else
|
||
|
cat .threads.txt
|
||
|
fi
|