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