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