Answers for "pipeline remove all bin obj project"

0

pipeline remove all bin obj project

Get-ChildItem .\ -include bin,obj -Recurse | foreach ($_) { remove-item $_.fullname -Force -Recurse }
Posted by: Guest on December-22-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language