欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

shell: tac 命令

程序员文章站 2022-06-21 22:26:35
...

tac - concatenate and print files in reverse


tac 是 cat 的反转版本, 内容会被反转之后输出。
例如:

file:
hello world.
你好世界。

$ tac file
    你好世界。
    hello world.
相关标签: shell