此外,是否可以从文件末尾开始grepping而不是开头,并在找到第一个匹配时停止?
grep pattern file | tail -1
要么
tac file | grep pattern | head -1
tac file | grep -m1 pattern