From f05d480b35c1529bb76227ee5ff8f38307680265 Mon Sep 17 00:00:00 2001 From: John Date: Fri, 17 Oct 2025 06:26:21 -0400 Subject: [PATCH] test.sh: add test script to quickly parse every file in a directory --- test.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 test.sh diff --git a/test.sh b/test.sh new file mode 100755 index 0000000..a4d6fed --- /dev/null +++ b/test.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +for file in $(find "$@" -type f); do + echo $file; + cat $file | cargo run -q; +done