Skip to content

Instantly share code, notes, and snippets.

@aaronpowell
Created July 4, 2011 23:38
Show Gist options
  • Select an option

  • Save aaronpowell/1064060 to your computer and use it in GitHub Desktop.

Select an option

Save aaronpowell/1064060 to your computer and use it in GitHub Desktop.
Recursively delete DLLs in /bin folders
Get-ChildItem src -recurse -include *.dll | foreach ($_) {
if($_.fullname.Contains("bin\")) {
remove-item $_.fullname
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment