#!/bin/bash # Pull the upstream EVTX sample bundle (all from Yamato-Security's curated # repo, which itself wraps several public sample sets — see test-data/sample-evtx/README.md). set -e cd "$(dirname "$0")" mkdir -p test-data [ -d test-data/sample-evtx ] || \ git clone --depth=1 https://github.com/Yamato-Security/hayabusa-sample-evtx.git test-data/sample-evtx echo "ready: test-data/sample-evtx"