mirror of
https://github.com/circify/circ.git
synced 2026-01-11 14:47:59 -05:00
11 lines
161 B
Bash
Executable File
11 lines
161 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
|
|
set -eu
|
|
|
|
disable -r time
|
|
|
|
for file in $(grep -r -l TEST_FILE ${0:a:h:h}/examples | grep -v /gen/)
|
|
do
|
|
${0:a:h}/file_test.py $1 $file
|
|
done
|