Posted on 2025-11-01 00:59 kacoro 阅读(12) 评论(0) 收藏 举报
window下递归删除 node_modules
Get-ChildItem $Path -Recurse -Force | Where{$_.Name -Match "node_modules"} | Remove-Item -Recurse -Force
window下递归删除.next
Get-ChildItem $Path -Recurse -Force | Where{$_.Name -Match ".next"} | Remove-Item -Recurse -Force
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。