repo.or.cz
/
Torque-3d.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #1843 from rasteron/development
[Torque-3d.git]
/
Templates
/
Full
/
DeleteDSOs.command
blob
f6e805a313a850e48fe49f79246d06b81a278cad
1
#!/bin/sh
2
3
cd
"`dirname "
$0
"`"
4
5
for
i
in
$
(
find
.
-type
f \
(
-iname
"*.cs"
\
))
6
do
7
file
=
${i}
.dso
8
if
[
-e
$file
]
9
then
10
echo
"Removing
${file}
"
11
rm
$file
12
fi
13
file
=
${i}
.edso
14
if
[
-e
$file
]
15
then
16
echo
"Removing
${file}
"
17
rm
$file
18
fi
19
done