kolibrios/programs/cmm/math/compile.sh

5 lines
75 B
Bash
Raw Normal View History

#!/bin/bash
for file in `find ./ -type f -name "*.c"`
do
cmm $file;
done