博客
关于我
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实现Edmonds-Karp算法(附完整源码)
    查看>>
    Objective-C实现EEMD算法(附完整源码)
    查看>>
    Objective-C实现elgamal 密钥生成器算法(附完整源码)
    查看>>
    Objective-C实现EM算法(附完整源码)
    查看>>
    Objective-C实现EM算法(附完整源码)
    查看>>
    Objective-C实现entropy熵算法(附完整源码)
    查看>>
    Objective-C实现euclidean distance欧式距离算法(附完整源码)
    查看>>
    Objective-C实现Euclidean GCD欧几里得最大公约数算法(附完整源码)
    查看>>
    Objective-C实现euclideanDistance欧氏距离算法(附完整源码)
    查看>>
    Objective-C实现euler method欧拉法算法(附完整源码)
    查看>>
    Objective-C实现euler modified变形欧拉法算法(附完整源码)
    查看>>
    Objective-C实现eulerianPath欧拉路径算法(附完整源码)
    查看>>
    Objective-C实现Eulers TotientFunction欧拉函数算法(附完整源码)
    查看>>
    Objective-C实现eulers totient欧拉方程算法(附完整源码)
    查看>>
    Objective-C实现EulersTotient欧拉方程算法(附完整源码)
    查看>>
    Objective-C实现eval函数功能(附完整源码)
    查看>>
    Objective-C实现even_tree偶数树算法(附完整源码)
    查看>>
    Objective-C实现Exceeding words超词(差距是ascii码的距离) 算法(附完整源码)
    查看>>
    Objective-C实现exchange sort交换排序算法(附完整源码)
    查看>>
    Objective-C实现ExponentialSearch指数搜索算法(附完整源码)
    查看>>