mirror of https://gitlab.com/bashrc2/epicyon
7 lines
237 B
Plaintext
7 lines
237 B
Plaintext
|
#!/bin/bash
|
||
|
if [ -d /etc/epicyon ]; then
|
||
|
cd /etc/epicyon || exit 0
|
||
|
else
|
||
|
cd /opt/epicyon || exit 0
|
||
|
fi
|
||
|
journalctl -u epicyon | grep "BENCHMARK GET|0\|BENCHMARK POST|0" | awk -F 'BENCHMARK' '{print $2}' | uniq | sort -r | head -n 20
|