Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我使用tac -s=STRING filename时,它会以原始顺序(而不是相反的顺序)将文件转储到 STDOUT?为什么这样做 - 当 tac 应该颠倒顺序并且-s=STRING应该使用 STRING 作为分隔符而不是换行符时?
tac -s=STRING filename
-s=STRING
使用短选项-s时,不得=在选项和参数之间使用:
-s
=
tac -s STRING filename
=仅在使用 long 选项时有效:
tac --separator=STRING filename