Kind/book/_check_all.sh
2024-03-01 20:40:31 -03:00

5 lines
103 B
Bash
Executable File

for file in $(ls *.kind2 | grep -v '^_'); do
echo "checking ${file}"
kind2 check "${file%.*}"
done