惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
B
Blog RSS Feed
C
Check Point Blog
D
Docker
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
MongoDB | Blog
MongoDB | Blog
博客园_首页
Apple Machine Learning Research
Apple Machine Learning Research
量子位
有赞技术团队
有赞技术团队
IT之家
IT之家
大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
M
MIT News - Artificial intelligence
B
Blog
阮一峰的网络日志
阮一峰的网络日志
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
腾讯CDC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
V2EX
月光博客
月光博客

博客园 - kacoro

windows开放端口 豆包给的生成blurDataURL方案 飞牛os初体验 最近升级了主机,买了个macbook air 境外电商还是需要软路由 vscode使用remote-shh在window子系统编程 docker 抖音直播助手 wan2.2 CPU是否缩肛 私域要怎么选? 每年都要来的企业年报填写公示 首尾帧wan2.1 通义万象初体验 国产商用图生视频对比 再试一次gpt-sovit comfyui工作流 利用AI工作流生成视频 开始使用comfyui,Flux Kontext tts哪家强?
window下递归删除 node_modules和.next
kacoro · 2025-11-01 · via 博客园 - kacoro

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