Shell: How to wrap text files to fit specified width

by on March 5, 2006 · 0 comments· last updated at March 5, 2006

You can use command called fold. It wrap each input line (or lines from file) to fit in specified width. Width can be specified in columns or bytes size. By default Wrap input lines in each FILE from standard input (keyboard ), writing to standard output (screen).

Syntax
fold -b size -w width file-name

Where,

  • -b : Use bytes rather than columns
  • -w : use WIDTH columns instead of 80 (which is default)

Examples

$ fold -w 40 file.txt
$ cat file.txt | grep something | fold -b 20



You should follow me on twitter here or grab rss feed to keep track of new changes.

Featured Articles:

{ 0 comments… add one now }

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <kbd> <blockquote> <pre> <a href="" title="">

Tagged as:

Previous Faq:

Next Faq: