
find . -name dirlinks.bak > blacklist

export mylist=`cat blacklist`

for thefile in $mylist
do
	rm -rf $thefile;
done

