gpt4 book ai didi

regex - egrep 该行以

转载 作者:太空宇宙 更新时间:2023-11-04 06:01:40 26 4
gpt4 key购买 nike

$ cat file
c f t e, u y r s p I y
p A w p d. R i
G e w o a l n o v s.
P G e a o c f s p
k e i c w a p p e.

$ od -c file
0000000 c f t e , u y r s
0000020 p I y \r \n p A w p
0000040 d . R i \r \n G e w o
0000060 a l n o v s . \r \n P
0000100 G e a o c f s p
0000120 \r \n k e i c w a p
0000140 p e . \r \n
0000146

我尝试使用egrep命令来grep所有以.结尾的行。但是,我没能做到!

例如:

$ egrep '.*\.' file
p A w p d. R i
G e w o a l n o v s.
k e i c w a p p e.

它没有给我正确的输出!

还尝试使用 $ 来锚定点、\r 和\n,但都不起作用。任何建议都会有帮助。

最佳答案

您应该开始将文件转换为 Unix 格式:

dos2unix file

然后你可以简单地使用这个指令:

egrep "[.]$" file

关于regex - egrep 该行以,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52941758/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com