1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00
cdt/doc/org.eclipse.cdt.doc.user/raw/hackedguide/images/findit
2003-06-13 22:29:43 +00:00

13 lines
167 B
Bash

#!/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