在Bash中反转文本文件

前端之家收集整理的这篇文章主要介绍了在Bash中反转文本文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在 Bash中反转文本文件

例如,如果some.txt包含以下内容

book
pencil
ruler

那怎么能得到这个呢? :

relur
licnep
koob
尝试tac和rev命令的组合形式,
$tac file | rev
relur
licnep
koob

来自man tac

tac – concatenate and print files in reverse

来自man rev

The rev utility copies the specified files to standard output,reversing the order of characters in every line. If no files are specified,stan‐ dard input is read.

原文链接:https://www.f2er.com/bash/385233.html

猜你在找的Bash相关文章