Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道使用 tail -1我可以获取文件中特定模式的最后一次出现。但是如何追尾呢?我试过tail-2了,这给了我倒数第二个和最后一个。
tail -1
tail-2
我正在使用 bash
谢谢
您可以链接头/尾:
tail -3|head -2
其中,假设您有这样的文件:
a b c d e
会有尾产
c d e
然后抓头
c d
sed -n 'x;$p' inputfile
这会将当前行交换到保持空间,并将前一行交换到模式空间。在最后一行,打印模式空间的内容(恰好是倒数第二行。