Linux fmt命令用于編排文本文件。
fmt指令會從指定的文件里讀取內容,將其依照指定格式重新編排后,輸出到標準輸出設備。若指定的文件名為"-",則fmt指令會從標準輸入設備讀取數據。
fmt [-cstu][-p<列起始字符串>][-w<每列字符數>][--help][--version][文件...]
參數說明:
重排指定文件。如文件testfile共5 行文字,可以通過命令對該文件格式進行重排,其命令為:
fmt testfile
輸出結果如下:
$ fmt testfile #重排testfile 文件 hello Linux! Linux is a free Unix-type operating system. This is a Linux testfile! Linux Linux
將文件testfile重新排成85 個字符一行,并在標準輸出設備上輸出,其命令應該為:
fmt -w 85 testfile
為了對比,先使用cat 命令查看文件內容:
$ cat testfile #查看testfile 文件的內容 hello Linux! Linux is a free Unix-type operating system. This is a Linux testfile! Linux Linux
使用fmt命令重排之后,輸出結果如下:
$ fmt -w 85 testfile #指定重排寬度為85個字符 hello Linux! Linux is a free Unix-type operating system. This is a Linux testfile! Linux Linux