mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
462be175fd
Signed-off-by: Yury V. Zaytsev <yury@shurup.com>
13 lines
197 B
Bash
Executable File
13 lines
197 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "test src/*"
|
|
for i in `find src -name '*.[ch]'`; do
|
|
./maint/dupincludes.pl $i
|
|
done
|
|
|
|
echo "test lib/*"
|
|
for i in `find lib -name '*.[ch]'`; do
|
|
./maint/dupincludes.pl $i
|
|
done
|
|
|