Skip to content

Latest commit

 

History

History
executable file
·
4 lines (4 loc) · 268 Bytes

clean.sh

File metadata and controls

executable file
·
4 lines (4 loc) · 268 Bytes
 
1
2
3
4
#!/bin/sh
find . -type f \( -name '*.user' -o -name '*.sdf' -o -name '*.ncb' -o -name '*.suo' \) -print -delete
find . -type f \( -name '*.bmp' -o -name '*.wav' -o -name '*.dat' \) -print -delete
find . -depth -type d \( -name Win32 -o -name x64 \) -exec rm -rv {} \;