Move reverse engineering artifacts under contrib

This commit is contained in:
2026-06-27 04:43:40 -05:00
parent 2fdc92b8ef
commit 8ee791ad0c
102 changed files with 34224 additions and 67 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env bash
set -euo pipefail
if [[ $# -lt 1 ]]; then
echo "usage: $0 <archive-file-or-dir> [output-list]" >&2
exit 2
fi
archive_path=$1
output=${2:-traffic-resources.txt}
contrib/re/tools/cp77_toolbox.sh archive --list \
--regex 'traffic.*persistent|persistent.*traffic|traffic.*lane|world.*traffic' \
"${archive_path}" \
> "${output}"
echo "wrote ${output}"