To Index

 Documented in Volume 1 of the UNIX Programmers Manual.


 % fmt infile > outfile
  will read infile and write it to outfile, making lines of outfile as close
  to 72 characters wide as possible; it does not break words or adjust text.
  ---------------------------------------------------------------------
  within visual mode of the ex editor (e.g.  vi) the command

      !}fmt

  will reformat a paragraph breaking long lines to fit into 72 columns.

To Index