Bootstrap

Linux 查找内容包含某字段的文件

比如我要查找 packages 文件夹中内容有 import的 ts 文件

find ./packages/ -name "*ts" | xargs grep -H "import"

;