mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
added shell script 'testdup.sh' for locate duplicate includes
Signed-off-by: Ilia Maslakov <il.smind@gmail.com>
This commit is contained in:
parent
bd3c950dce
commit
aa8f4ffbf6
12
maint/testdup.sh
Executable file
12
maint/testdup.sh
Executable file
@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
|
||||
echo "test lib/*"
|
||||
for i in `find src -name '*.[ch]'`; do
|
||||
./maint/dupincludes.pl $i
|
||||
done
|
||||
|
||||
echo "test srs/*"
|
||||
for i in `find lib -name '*.[ch]'`; do
|
||||
./maint/dupincludes.pl $i
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user