mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-20 04:34:48 +00:00
16 lines
214 B
Bash
Executable file
16 lines
214 B
Bash
Executable file
#!/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
|
|
|