diff options
Diffstat (limited to 'contrib/findunusedimage.sh')
-rwxr-xr-x | contrib/findunusedimage.sh | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/contrib/findunusedimage.sh b/contrib/findunusedimage.sh deleted file mode 100755 index 9323a7e..0000000 --- a/contrib/findunusedimage.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -echo "This script does not find every used image, because some filenames are generated at runtime!" -for i in bilder/*; do - grep `basename $i` *.html >/dev/null - if [ $? != 0 ]; then - echo $i - fi -done |