在文件上执行grep时如何显示行号


14

在文件上执行grep时如何显示行号。例如:

grep CONFIG_PM_ADVANCED_DEBUG /boot/config-`uname -r 

Answers:



6

grep -n <pattern> <file>在输出的每一行前都加上输入文件中的行号。这是你想要的?


与速度更快的enzotib在空中相撞
Petr Uzel

1

alias grep='grep -inE --color=auto'

这也将为匹配项着色,以便于阅读。



0
cat -n /boot/config | grep CONFIG_PM_ADVANCED_DEBUG

cat-n[umber]线和| (filter)通过grep只想找线,CONFIG_PM....在其中

结果输出将是行号;行和字符串的文本

cat -n[umber lines] /Path/to/filename | grep -i[gnor case (optional)] STRING_TO_LOOK_FOR

欢迎来到U&L。我编辑了您的帖子,因此它更多地利用了网站的格式设置可能性。请检查更改(带有编辑历史记录),以便将来的答案(和问题)看起来更好。也不必“签名”您的帖子,您的姓名会与您的个人资料一起发布在所有答案上
Anthon 2015年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.