sbase/fold.1

26 lines
469 B
Groff
Raw Normal View History

2011-06-08 20:30:33 +00:00
.TH FOLD 1 sbase\-VERSION
.SH NAME
fold \- wrap lines to width
.SH SYNOPSIS
.B fold
.RB [ \-bs ]
.RB [ \-w
.IR width ]
.RI [ file ...]
.SH DESCRIPTION
.B fold
reads each file in sequence and prints its lines, broken such that no line
exceeds 80 UTF-8 characters. If no file is given, fold reads from stdin.
2011-06-08 20:30:33 +00:00
.SH OPTIONS
.TP
.B \-b
counts bytes rather than characters.
2011-06-08 20:30:33 +00:00
.TP
.B \-s
breaks only at spaces.
.TP
.BI \-w " width"
breaks at
2011-06-08 20:30:33 +00:00
.I width
characters, instead of 80.