Created
February 25, 2013 21:24
-
-
Save hoserdude/5033457 to your computer and use it in GitHub Desktop.
PowerShell equivalent to rm -r {pattern}. Usage: delete-recursively.ps1 *.foo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-ChildItem . -r $args[0] | Remove-Item -r -force |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment