📜  如何一起删除项目中的 spec.ts 文件 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:14.107000             🧑  作者: Mango

代码示例1
Deleting them from an existing project depends on your OS. If it is a Unix based system you could do something like this:

find . -type f -name '*.spec.ts' -delete