如何让Linux只使用cat显示文本文件中的最后一段?

时间:2017-03-07 13:42:50

标签: linux text-files

我有一份学校作业,其中包含以下内容:

  

使用经过适当修改的cat命令,仅显示textfile

中的最后一段

我已经查看了https://unix.stackexchange.com/questions/308032/modifying-cat-command-to-number-paragraphs-and-display-last-paragraph-only,但这没有用。

我知道您可以在没有 cat的情况下执行此操作,但我的学校说我必须使用cat命令。

谢谢! ;)

编辑:我使用cat -n thefile | tail -n1并且效果很好。谢谢Peter Bowyer!

1 个答案:

答案 0 :(得分:0)

假设你每行有一个段落.....
           cat -n thefile | tail -n1