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

推荐订阅源

博客园 - Franky
云风的 BLOG
云风的 BLOG
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
Engineering at Meta
Engineering at Meta
Vercel News
Vercel News
Y
Y Combinator Blog
B
Blog
Microsoft Azure Blog
Microsoft Azure Blog
C
Check Point Blog
M
MIT News - Artificial intelligence
Jina AI
Jina AI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Apple Machine Learning Research
Apple Machine Learning Research
Hugging Face - Blog
Hugging Face - Blog
阮一峰的网络日志
阮一峰的网络日志
罗磊的独立博客
Stack Overflow Blog
Stack Overflow Blog
F
Fortinet All Blogs
博客园 - 司徒正美
I
InfoQ
Google DeepMind News
Google DeepMind News
GbyAI
GbyAI
U
Unit 42

博客园 - 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