Files
beast/tests.sh
T

12 lines
114 B
Bash
Raw Normal View History

2014-03-24 09:26:55 -07:00
#!/bin/bash
# Runs all the tests in bin/
for f in bin/*.test
do
{
echo -e "\033[94m$f\033[0m"
$f
}
done