diff options
Diffstat (limited to 'contrib/findunusedimage.sh')
-rwxr-xr-x | contrib/findunusedimage.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/contrib/findunusedimage.sh b/contrib/findunusedimage.sh new file mode 100755 index 0000000..740005a --- /dev/null +++ b/contrib/findunusedimage.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +for i in bilder/*; do + grep `basename $i` *.html >/dev/null + if [ $? != 0 ]; then + echo $i + fi +done |