Files
SDK_RK3288/docs/source.android.com/scripts/cleanup.sh

11 lines
139 B
Bash
Executable File

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