第16期:grep 2023年05月22日 留言 例子:grep 12345grep "ricky" test.log # 只取选中的字符所在行grep -v "ricky" test.log # 取不选中的行grep -r "ricky" ./* # 递归查找当前目录及子目录下的rickygrep -e "rick*" test.log # 开启正则匹配模式grep -w 'ricky' txt # 精确匹配字符串,-w只会匹配单独存在的ricky,如文本里存在arickya不会被匹配到,但a ricky a 会 文章目录 原文链接: https://chenqiaorui.github.io/2023/05/22/第16期:grep/ 版权声明: 转载请注明出处.