Torque3D/Templates/Empty/DeleteDSOs.command

20 lines
272 B
Plaintext
Raw Normal View History

2012-09-19 15:29:55 +00:00
#!/bin/sh
cd "`dirname "$0"`"
for i in $(find . -type f \( -iname "*.cs" \))
do
file=${i}.dso
if [ -e $file ]
then
echo "Removing ${file}"
rm $file
fi
file=${i}.edso
if [ -e $file ]
then
echo "Removing ${file}"
rm $file
fi
done