repo.or.cz
/
LibreOffice.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git]
/
sw
/
qa
/
extras
/
find-unused-data.sh
blob
9f4496871875fd13316d49dd6512af3bd0dbd45e
1
#!/bin/bash
2
3
for
i
in
*/
data
/*
4
do
5
file
=
$
(
basename
$i
)
6
if
!
git
grep
-q
$file
;
then
7
echo
"WARNING:
$i
is not used, write a testcase for it!"
8
fi
9
done
10
11
# vi:set shiftwidth=4 expandtab: