mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-28 17:04:34 +00:00
9 lines
140 B
Bash
Executable File
9 lines
140 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
find "$1" -type f \(\
|
|
-iname "*.exe" \
|
|
-o -iname "*.dll" \
|
|
-o -iname "*.lib" \
|
|
-o -iname "*.pdb" \
|
|
\) -delete
|