mirror of
https://github.com/MidnightCommander/mc
synced 2025-02-12 13:24:31 +03:00
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
|
|
|