摘要: 1. 获取文件中的关键字key: cat fileName | grep "key" 2. 获取文件中的某个关键字key1, key2, key3: cat fileName | grep -E "key1|key2|key3" 3. 获取文件中的多个关键字,同时满足: cat fileName | 阅读全文
posted @ 2023-07-30 20:40 shenshu 阅读(34) 评论(0) 推荐(0) 编辑