LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 627|回复: 4

有没有哪个命令可以在查一个文件内容时能从文件尾查到文件头

[复制链接]
发表于 2003-9-4 20:52:09 | 显示全部楼层 |阅读模式
急需一个命令或加上什么参数可以在对一个文件的内容查询时能从文件尾查到文件头而不是从文件头查到文件尾。
发表于 2003-9-5 09:27:54 | 显示全部楼层
你的意思是倒着用文件吗?如果是,可以用 tac 倒序输出文件:
$ cat a
there is - 3 test data file -- you and me
there is - 4 test data file -- you and me
there is - 5 test data file -- you and me
$ tac a
there is - 5 test data file -- you and me
there is - 4 test data file -- you and me
there is - 3 test data file -- you and me
 楼主| 发表于 2003-9-5 10:47:33 | 显示全部楼层

这个办法也不错

我是在想有没有一个命令可以在文章中找到所有匹配的,然后只打印最后一个匹配的。
发表于 2003-9-5 14:29:30 | 显示全部楼层
你找到匹配之后用sed -n $p来取最后一行.至于你说的有没有单独的一个命令就能完成的话,我不知道:sorry
 楼主| 发表于 2003-9-5 19:47:39 | 显示全部楼层

这觉得这个命令应该是有的

我在文件中取出了n个匹配的记录,我就想要第二个,或是最后一个,这样的想法是完全可以实现的。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表