mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-01 21:17:05 +03:00
5 lines
75 B
Bash
5 lines
75 B
Bash
|
#!/bin/bash
|
||
|
for file in `find ./ -type f -name "*.c"`
|
||
|
do
|
||
|
cmm $file;
|
||
|
done
|