Full Template for ticket #1

This commit is contained in:
DavidWyand-GG 2012-09-19 11:54:25 -04:00
parent 74f265b3b3
commit f439dc8dcd
2150 changed files with 286240 additions and 0 deletions

View file

@ -0,0 +1,15 @@
#!/bin/sh
cd "`dirname "$0"`"
for i in $(find . -type f \( -iname "*.dae" \))
do
len=$((${#i} - 4))
file=${i:0:$len}.cached.dts
if [ -e $file ]
then
echo "Removing ${file}"
rm $file
fi
done