morpheus-base

morpheus base system
git clone git://git.2f30.org/morpheus-base
Log | Files | Refs

fold.1 (469B)


      1 .TH FOLD 1 sbase\-VERSION
      2 .SH NAME
      3 fold \- wrap lines to width
      4 .SH SYNOPSIS
      5 .B fold
      6 .RB [ \-bs ]
      7 .RB [ \-w
      8 .IR width ]
      9 .RI [ file ...]
     10 .SH DESCRIPTION
     11 .B fold
     12 reads each file in sequence and prints its lines, broken such that no line
     13 exceeds 80 UTF-8 characters.  If no file is given, fold reads from stdin.
     14 .SH OPTIONS
     15 .TP
     16 .B \-b
     17 counts bytes rather than characters.
     18 .TP
     19 .B \-s
     20 breaks only at spaces.
     21 .TP
     22 .BI \-w " width"
     23 breaks at
     24 .I width
     25 characters, instead of 80.