Skip to content

Latest commit

 

History

History
5 lines (5 loc) · 240 Bytes

clean.sh

File metadata and controls

5 lines (5 loc) · 240 Bytes
 
Dec 31, 2011
Dec 31, 2011
1
2
3
4
5
find . -type d -name 'Debug' -exec rm -rv {} \;
find . -type d -name 'Release' -exec rm -rv {} \;
find . -type f -name '*.user' -exec rm -v {} \;
find . -type f -name '*.ncb' -exec rm -v {} \;
find . -type f -name '*.suo' -exec rm -v {} \;