从下到上查看文件

发布于 2024-11-10 07:12:53 字数 304 浏览 4 评论 0原文

您好,

我知道 cat 在屏幕上打印文件的内容。

我从来没有在linux上工作过。但是我知道tac是从下到上显示文件的命令。我什至不确定tac是否在unix上。至少在我的unix盒子上它不存在。 我想知道是否有一个简单的 unix 命令可以从下到上给出输出?

我期待如下:

<command> file_name;

我知道这可以使用 awk、sed 等工具来完成。 但有人可以告诉我一个最简单的命令来执行该任务吗?

HI,

I know that cat prints the contents of the file on screen.

i never worked on linux.But i am aware that tac is the command to show the file from bottom to top.I am not even sure whether tac is on unix.Atleast on my unix box its not present.
i want to know is there a simple command unix which gives the output from bottom to top?

i am expecting like below :

<command> file_name;

I know this can be done using some tools like awk,sed.
but could anyone please tell me a most simple command to perform that task?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

君勿笑 2024-11-17 07:12:53

Unix 上的等价物

tac 

tail -r

希望这会有所帮助

The Unix equivalent of

tac 

is

tail -r

Hope this helps

睫毛溺水了 2024-11-17 07:12:53

tac :Tac 与 cat 相反,它产生的输出以先显示最后一行,然后显示倒数第二行的方式呈现在。

输入图片此处描述

https://www.howtoforge.com/linux-tac-command/

tac : Tac is opposite to cat in the sense that the output it produces is presented in a way that the last line is displayed first, then the second last line, and so on.

enter image description here

https://www.howtoforge.com/linux-tac-command/

放我走吧 2024-11-17 07:12:53

您可以使用 tail -r

这可能应该移至 unix.stackexchange.com

You can use tail -r

This probably should be moved to unix.stackexchange.com

终陌 2024-11-17 07:12:53

tac 位于 GNU coreutils 中,并且是目前唯一可以执行您想要的操作的单个文件可执行文件。如果您没有安装 tac,则需要使用速度较慢的替代方案,例如 如何反转文本文件的行?

tac is in GNU coreutils, and is presently the only single file executable that does what you want. If you don't have tac installed you'll need to use a slower alternative, like the ones outlined at How to reverse lines of a text file?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文