forked from KolibriOS/kolibrios
5 lines
75 B
Bash
Executable File
5 lines
75 B
Bash
Executable File
#!/bin/bash
|
|
for file in `find ./ -type f -name "*.c"`
|
|
do
|
|
cmm $file;
|
|
done |