5 lines
90 B
Batchfile
5 lines
90 B
Batchfile
@echo off
|
|
|
|
for %%f in (dist\*.pdb) do (
|
|
echo %%f | find "starbound" > nul || del %%f
|
|
) |