Linux fmt命令用于編排文本文件。
fmt指令會從指定的文件里讀取內(nèi)容,將其依照指定格式重新編排后,輸出到標(biāo)準(zhǔn)輸出設(shè)備。若指定的文件名為”-“,則fmt指令會從標(biāo)準(zhǔn)輸入設(shè)備讀取數(shù)據(jù)。
fmt [-cstu][-p<列起始字符串>][-w<每列字符數(shù)>][--help][--version][文件...]
參數(shù)說明:
重排指定文件。如文件testfile共5 行文字,可以通過命令對該文件格式進行重排linux命令大全,其命令為:
fmt testfile
輸出結(jié)果如下:
$ fmt testfile #重排testfile 文件 hello Linux! Linux is a free Unix-type operating system. This is a Linux testfile! Linux Linux
將文件testfile重新排成85 個字符一行l(wèi)inux命令大全,并在標(biāo)準(zhǔn)輸出設(shè)備上輸出,其命令應(yīng)該為:
fmt -w 85 testfile
為了對比,先使用cat 命令查看文件內(nèi)容:
$ cat testfile #查看testfile 文件的內(nèi)容 hello Linux! Linux is a free Unix-type operating system. This is a Linux testfile! Linux Linux
使用fmt命令重排之后,輸出結(jié)果如下:
上一個教程:每天一個linux命令:file(11)