标签: linux text-files
我有一份学校作业,其中包含以下内容:
使用经过适当修改的cat命令,仅显示textfile 中的最后一段
使用经过适当修改的cat命令,仅显示textfile
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!
cat -n thefile | tail -n1
答案 0 :(得分:0)
假设你每行有一个段落..... cat -n thefile | tail -n1