1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 10:02:10 +02:00
tldr/pages/common/fmt.md
Vitor Henrique c8f956319f
pages*: simplify page description (#12149)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-02-14 21:25:13 +01:00

572 B

fmt

Reformat a text file by joining its paragraphs and limiting the line width to a number of characters (75 by default). More information: https://www.gnu.org/software/coreutils/fmt.

  • Reformat a file:

fmt {{path/to/file}}

  • Reformat a file producing output lines of (at most) n characters:

fmt -w {{n}} {{path/to/file}}

  • Reformat a file without joining lines shorter than the given width together:

fmt -s {{path/to/file}}

  • Reformat a file with uniform spacing (1 space between words and 2 spaces between paragraphs):

fmt -u {{path/to/file}}