下列哪个命令可以在test.txt文件中反向搜索(即搜索不包含the字符串的内容)the字符串,并显示行号
A、grep -c 'the' test.txt
B、grep -b 'the' test.txt
C、grep -vn 'the' test.txt
D、grep -t 'the' test.txt
发布时间:2024-12-30 08:27:46
A、grep -c 'the' test.txt
B、grep -b 'the' test.txt
C、grep -vn 'the' test.txt
D、grep -t 'the' test.txt