mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 23:32:17 +00:00
10 lines
225 B
Bash
10 lines
225 B
Bash
#!/bin/bash
|
|
|
|
set -eufo pipefail
|
|
|
|
for i in base kprobe kretprobe rawtp fentry fexit fmodret
|
|
do
|
|
summary=$(sudo ./bench -w2 -d5 -a rename-$i | tail -n1 | cut -d'(' -f1 | cut -d' ' -f3-)
|
|
printf "%-10s: %s\n" $i "$summary"
|
|
done
|