13 lines
243 B
Bash
Executable File
13 lines
243 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
export DO_VERBOSE="${DO_VERBOSE:-0}"
|
|
export DO_PARSING="${DO_PARSING:-expr}"
|
|
|
|
cargo build --release
|
|
|
|
for file in $(find "$@" -type f); do
|
|
echo $file;
|
|
cat $file | cargo run --release -q $CARGO_FLAGS;
|
|
echo;
|
|
done
|