git @ Cat's Eye Technologies
Emmental
/
c528a6e
Add clean.sh script.
Chris Pressey
5 years ago
1 changed file(s) with
6 addition(s)
and
0 deletion(s)
.
Raw diff
Collapse all
Expand all
+6
-0
clean.sh
less
more
0
#!/bin/sh
1
2
find . -name "*.o" -exec rm {} \;
3
find . -name "*.hi" -exec rm {} \;
4
find . -name "*.jsmod" -exec rm {} \;
5
find . -name "*.exe" -exec rm {} \;