test.sh: add test script to quickly parse every file in a directory

This commit is contained in:
2025-10-17 06:26:21 -04:00
parent 6368e68941
commit f05d480b35

6
test.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env bash
for file in $(find "$@" -type f); do
echo $file;
cat $file | cargo run -q;
done