System Grab Bag

View all TLDR pages from common (or from all pages)

fold

Wrap each line in an input file to fit a specified width and print it to stdout. More information: https://manned.org/fold.1p.
  • Wrap each line to default width (80 characters):
    fold {{path/to/file}}
  • Wrap each line to width "30":
    fold -w30 {{path/to/file}}
  • Wrap each line to width "5" and break the line at spaces (puts each space separated word in a new line, words with length > 5 are wrapped):
    fold -w5 -s {{path/to/file}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.

Other Projects

This TLDR page is also found in other projects: