Skip to content

Instantly share code, notes, and snippets.

@synesthesia
Created January 19, 2017 08:32
Show Gist options
  • Save synesthesia/c2fd027a3611691e7e3836550a64d276 to your computer and use it in GitHub Desktop.
Save synesthesia/c2fd027a3611691e7e3836550a64d276 to your computer and use it in GitHub Desktop.
RealClean.ps1
gci -include debug,release -recurse |
% {gci -path $_.PSPath -File |
% {
Write-Host $_.Name
$_.Delete()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment