博客
关于我
fmt命令
阅读量:405 次
发布时间:2019-03-06

本文共 1486 字,大约阅读时间需要 4 分钟。

fmt命令

fmt命令用于对文本文件进行编排和格式化,能够根据指定的格式将内容重新排列并输出。若文件名为 "-",则fmt命令会从标准输入读取数据。

语法

fmt命令的基本语法格式如下:

fmt [-WIDTH] [OPTION]... [FILE]...

参数说明

以下是fmt命令的主要参数:

  • -c, --crown-margin:保留前两行的缩进格式。
  • -p, --prefix=STRING:仅对以STRING开头的行进行格式化,并重新附加前缀。
  • -s, --split-only:将长行拆分为多行,但不进行重新填充。
  • -t, --tagged-paragraph:第一行的缩进与其他行不同。
  • -u, --uniform-spacing:单词之间使用一个空格,句子末尾使用两个空格。
  • -w, --width=WIDTH:指定行的最大宽度(默认为75列)。
  • -g, --goal=WIDTH:设定行的目标宽度(默认为宽度的93%)。
  • --help:显示帮助信息。
  • --version:显示fmt命令的版本信息。

示例

  • 默认格式化

    fmt命令不使用任何选项,将文件中的所有单词格式化为一行,行宽默认为75列。

    fmt file.txt# Hello# everyone.# Have# a# nice# day.

    格化后的输出:

    Hello everyone. Have a nice day.
  • 指定行宽

    使用 -w选项指定行宽为10列,超出单词长度的部分会换行。

    fmt -w 10 file.txt# Hello# everyone.# Have# a# nice# day.

    格化后的输出:

    Helloeveryone.Haveaniceday.
  • 仅拆分长行

    使用 -s选项将长行拆分为多行,但不进行重新填充。

    fmt -s file.txt# Love is patient, love is kind. It does not envy, it does not boast, it is not proud. It is not rude, it is not self-seeking, it is not easily angered,  it keeps no record of wrongs. Love does not delight in evil but rejoices with the truth. It always protects, always trusts, always hopes, always perseveres. Love never fails.

    格化后的输出:

    Love is patient, love is kind. It does not envy, it does not boast, it# is not proud. It is not rude, it is not self-seeking, it is not easily# angered,  it keeps no record of wrongs. Love does not delight in evil# but rejoices with the truth. It always protects, always trusts, always# hopes, always perseveres. Love never fails.
  • 参考资料

    转载地址:http://qockz.baihongyu.com/

    你可能感兴趣的文章
    Objective-C实现heaps algorithm堆算法(附完整源码)
    查看>>
    Objective-C实现heap堆算法(附完整源码)
    查看>>
    Objective-C实现Heap堆算法(附完整源码)
    查看>>
    Objective-C实现hexagonal numbers六边形数算法(附完整源码)
    查看>>
    Objective-C实现hidden layers neural network浅层神经网络算法(附完整源码)
    查看>>
    Objective-C实现highest response ratio next高响应比优先调度算法(附完整源码)
    查看>>
    Objective-C实现hill climbing爬山法用来寻找函数的最大值算法(附完整源码)
    查看>>
    Objective-C实现Hill密码加解密算法(附完整源码)
    查看>>
    Objective-C实现histogram stretch直方图拉伸算法(附完整源码)
    查看>>
    Objective-C实现Hopcroft算法(附完整源码)
    查看>>
    Objective-C实现horizontal projectile motion平抛运动算法(附完整源码)
    查看>>
    Objective-C实现hornerMethod霍纳法算法(附完整源码)
    查看>>
    Objective-C实现Horn–Schunck光流算法(附完整源码)
    查看>>
    Objective-C实现Http Post请求(附完整源码)
    查看>>
    Objective-C实现http下载文件 (附完整源码)
    查看>>
    Objective-C实现Http协议下载文件(附完整源码)
    查看>>
    Objective-C实现huffman哈夫曼编码算法(附完整源码)
    查看>>
    Objective-C实现ID3贪心算法(附完整源码)
    查看>>
    Objective-C实现IIR 滤波器算法(附完整源码)
    查看>>
    Objective-C实现IIR数字滤波器(附完整源码)
    查看>>