Skip to content

Instantly share code, notes, and snippets.

@DannyNunez
Last active December 10, 2015 19:59
Show Gist options
  • Select an option

  • Save DannyNunez/4485555 to your computer and use it in GitHub Desktop.

Select an option

Save DannyNunez/4485555 to your computer and use it in GitHub Desktop.
Delete all files of a type recursively
get-childitem C:\ *.htm -recurse | foreach ($_) {remove-item $_.fullname}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment