Skip to content

Instantly share code, notes, and snippets.

@sandcastle
Created October 27, 2014 01:37
Show Gist options
  • Save sandcastle/78dcba3c8e9e6910fb12 to your computer and use it in GitHub Desktop.
Save sandcastle/78dcba3c8e9e6910fb12 to your computer and use it in GitHub Desktop.
Cleans all sub directories that contain bin, obj and resharper folders.
Get-ChildItem .\ -include bin,obj,_ReSharper* -Recurse | foreach ($_) { remove-item $_.fullname -Force -Recurse }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment