e2fsprogs/wordwrap.pl
Theodore Ts'o 9d564f73f5 ChangeLog, Makefile.in, configure.in, MCONFIG.in, configure, wordwrap.pl:
Makefile.in (depend): Make "make depend" at the top-level
  	automatically recurse through all subdirectories.
  configure.in: Test for perl since it's needed by wordwrap.pl
  MCONFIG.in (depend): Fix make-depend so that it the dependencies are
  	automatically word-wrapped.  Added the makefile macro $(PERL).
  wordwrap.pl: New file which does the word wrapping.
1999-07-03 20:25:58 +00:00

27 lines
446 B
Perl

#!/usr/bin/perl
#
# wordwrap.pl --- does word wrap
#
while (<>) {
if (/^#/) { # don't word wrap comments
print;
next;
}
next if (/^$/); # skip blank lines
$linelen = 0;
split;
while (defined($word = shift @_)) {
if ($linelen > 0) {
printf(" ");
}
$len = length($word) + 1;
$linelen += $len;
if ($linelen > 78) {
printf("\\\n ");
$linelen = 1+$len;
}
printf("%s", $word);
}
printf("\n");
}