summaryrefslogtreecommitdiff
path: root/contrib/findunusedimage.sh
blob: 740005a0076cb5708512fd0603dd2b826e3f59fa (plain)
1
2
3
4
5
6
7
8
#!/bin/bash

for i in bilder/*; do
  grep `basename $i` *.html >/dev/null
	if [ $? != 0 ]; then
	  echo $i
	fi
done