Linux tac命令的實現示例

2022-09-26 13:45:15 字數 863 閱讀 9580

1.命令簡介

tac(cat 的反序)命令以行為單位反序輸出檔案內容,即第一行最後顯示,最後一行先顯示。輸出內容和 cat 命令相反。

2.命令格式

tac [option]... [file]...

如果沒有檔案或檔案是 -,讀取標準輸入。

3.選項說明

長選項的強制性引數對於短選項也是強制的。

-b, --before

在行前而非行尾新增分隔標誌

-r, --regex

將分隔標誌視作正規表示式來解析

-s, --separat程式設計客棧or=string

指定字串代替換行符作為行分隔標誌

--help

顯示幫助資訊並退出

--version

顯示版本資訊並退出

4.常用示例

給定檔案 file1 和 file2 用於測試,內容分別是:

file1 內容:

123456

789file2 內容:

abcdef(1)反向檢視檔案內容。

tac file1

789456

123(2)反向檢視檔案內容,以字串 b 作為行分隔符。

tac -s"b" file2

csga***ef

ab(3)連線檔案 file1 和 file2 到 file3。

tac file1 file2 > file3

cat file3

789456

123def

abc參考文獻

[1] tac(1) manual

本文標題: linux tac命令的實現示例

本文位址: /os/linux/300657.html

shell實現ftp命令示例

一 shell指令碼示例 cd path you want to upload download ftp niv eof open ip address user username password ascii or bin put or get byeeof 下面詳細講解以下這段 1.cd pat...

windbg命令示例

device tree 那的顯示僅僅是個名字而已 它們都是 device object 我還是喜歡 windbg 的原汁原味 0 kd drvobj atapi driver object 89de2b60 is for driver atapi driver extension list id a...

tr命令示例

在bash下使用tr命令的示例 先定義乙個環境變數字串,隨便賦值,我就用當前目錄了 zhang zwfedora23 woca817c echo hello path home zhang work 60g woca817c woca817c以下是使用 c和 d選項的處理結果 只單獨的使用 c需要跟...