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