Files
Doughlang/test.sh

7 lines
109 B
Bash
Executable File

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