8 lines
98 B
Bash
Executable File
8 lines
98 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
IFS=$'\n'
|
|
|
|
for file in $(find test -type f); do
|
|
build/main.out < $file
|
|
done
|