分解 tail 的输出

Decomposing the output of tail

我有一个如下所示的文本文件。我想知道如何在使用 tail -n 1 后检查最后一行中每个元素的值。

abd we 12345 1000
abd we 12350 1000
abd we 12355 1000
abd we 12360 1000

提前致谢

你的要求很模糊。你想要这个吗?

fields=( $(tail -n 1 file) )
if [[ ${fields[2]} == 13000 ]]; then ...