This tag has no Wiki Excerpt yet!
par is a paragraph reformatter, vaguely similar to fmt, but better. It can format, justify, align, slice and dice using a bewildering array of options. See http://www.nicemice.net/par/
par is a filter which copies its input to its output, changing all white characters (except newlines) to spaces, and reformatting each paragraph. Paragraphs are separated by protected, blank, and bodiless lines (see the Terminology section for definitions), and optionally delimited by indentation (see the d option in the Options section). Each output paragraph is generated from the corresponding input paragraph as follows:
- An optional prefix and/or suffix is removed from each input line.
- The remainder is divided into words (separated by spaces).
- The words are joined into lines to make an eye-pleasing paragraph.
- The prefixes and suffixes are reattached.
If there are suffixes, spaces are inserted before them so that they all end in the same column.
In scientific software r for statistical computing and graphics, par
is a use function to set or query graphical parameters. Many parameters can also be passed as arguments to plotting functions. See ?par
.