我需要在一个以 a 开头的文件中找到一行,并且该行中的最后一个单词以 e 结尾。
如何使用grep
等工具完成此工作?
答案 0 :(得分:11)
请说出来:
grep '^a.*e$' file
这意味着:查找那些以^
开头(a
),然后是0个或更多字符的行,最后在行尾e
$
)。
$ cat a
hello
and thisfinishes with e
foo
$ grep '^a.*e$' a
and thisfinishes with e
答案 1 :(得分:2)