aboutsummaryrefslogtreecommitdiff
path: root/scripts/cleanup.sh
blob: b1bbba1e9cff182e2e3f5e64b7a469ac0f6c125c (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

for img in *.png *.gif *.jpg
do
  FOUND=`grep -R $img ../site_src`
  if [ -z "$FOUND" ]
  then
    mv $img useless/
  fi
done