mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
13 lines
167 B
Bash
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
|