Files
Evan Downing 2be6f91545 Parse result logs (#326)
* Add doc on parsing logs and scripts to unpack dataset

* Reorganize scripts

* Reorg markdown files.
2025-08-27 15:26:38 -04:00

8 lines
182 B
Bash
Executable File

#!/bin/bash
if [ "$#" -ne 1 ]; then
echo "usage: $0 <keyword>"
exit 1
fi
find tasks_storage -name "task_meta.json" -exec grep -rIil "$1" {} \; | cut -d '/' -f 1-2 | sort -u