mirror of
https://github.com/etlegacy/etlegacy-libs.git
synced 2025-02-24 04:01:12 +00:00
5 lines
240 B
Bash
Executable file
5 lines
240 B
Bash
Executable file
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 {} \;
|