1 2 3 4 5 6 7
#!/bin/sh for test in *.c; do echo "Testing $test" ../glcpp < $test > $test.out diff -u $test.expected $test.out done