1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 18:26:01 +02:00
cdt/doc/org.eclipse.cdt.doc.user/raw/hackedguide/images/findit

14 lines
167 B
Text
Raw Normal View History

#!/bin/sh
for i in `ls *.gif *.jpg`
do
grep $i ../*.html > /dev/null
result=$?
if [ $result -ne 0 ]
then
echo "Removing $i ($result)"
/bin/rm -f $i
fi
done