博客
关于我
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实现bellman ford贝尔曼福特算法(附完整源码)
    查看>>
    Objective-C实现bellman-ford贝尔曼-福特算法(附完整源码)
    查看>>
    Objective-C实现bellman-ford贝尔曼-福特算法(附完整源码)
    查看>>
    Objective-C实现bellmanFord贝尔曼-福特算法(附完整源码)
    查看>>
    Objective-C实现BellmanFord贝尔曼-福特算法(附完整源码)
    查看>>
    Objective-C实现bezier curve贝塞尔曲线算法(附完整源码)
    查看>>
    Objective-C实现bfs 最短路径算法(附完整源码)
    查看>>
    Objective-C实现BF算法 (附完整源码)
    查看>>
    Objective-C实现Bilateral Filter双边滤波器算法(附完整源码)
    查看>>
    Objective-C实现binary exponentiation二进制幂运算算法(附完整源码)
    查看>>
    Objective-C实现binary search二分查找算法(附完整源码)
    查看>>
    Objective-C实现binary tree mirror二叉树镜像算法(附完整源码)
    查看>>
    Objective-C实现binary tree traversal二叉树遍历算法(附完整源码)
    查看>>
    Objective-C实现BinarySearchTreeNode树算法(附完整源码)
    查看>>
    Objective-C实现binarySearch二分查找算法(附完整源码)
    查看>>
    Objective-C实现binomial coefficient二项式系数算法(附完整源码)
    查看>>
    Objective-C实现bisection二分法算法(附完整源码)
    查看>>
    Objective-C实现bisection二等分算法(附完整源码)
    查看>>
    Objective-C实现BitMap算法(附完整源码)
    查看>>
    Objective-C实现bitmask位掩码算法(附完整源码)
    查看>>