5 lines
72 B
Text
5 lines
72 B
Text
|
|
#!/bin/bash
|
||
|
|
set -e
|
||
|
|
|
||
|
|
for name in test_*.md; do ./run "${name%%.*}"; done
|