Skip to content

Instantly share code, notes, and snippets.

View kjeske's full-sized avatar

Krzysztof Jeske kjeske

View GitHub Profile
@kjeske
kjeske / clean.cmd
Created February 21, 2013 14:32 — forked from nikodemrafalski/clean.cmd
Clean bin and obj artifacts directories downstream current directory tree.
for /d /r . %%d in (bin, obj) do @if exist "%%d" rd /s/q "%%d"