Add dbzfe log parser

This commit is contained in:
Jared Miller 2026-02-15 15:40:50 -05:00
parent d9739b4f09
commit 30e7123912
Signed by: shmup
GPG key ID: 22B5C6D66A38B06C
2 changed files with 779 additions and 296 deletions

13
docs/research/dbzfe Executable file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env bash
# parse dbzfe combat log for combat-relevant lines
# grabs lines starting with (after timestamp): * or You
log="${1:-docs/research/dbzfe.log}"
if [[ ! -f "$log" ]]; then
echo "usage: docs/research/dbzfe [logfile]"
echo "default: docs/research/dbzfe.log"
exit 1
fi
grep -E '^[0-9:.]+[[:space:]]+((\*|You ))' "$log"

File diff suppressed because it is too large Load diff