File size: 310 Bytes
158b61b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
#!/usr/bin/perl -w
use strict;
while (@ARGV) {
$_ = shift;
/^-b$/ && ($| = 1, next); # not buffered (flush each line)
}
while(<STDIN>) {
chop;
my $first = 1;
foreach (split) {
if (length($_)<200) {
print " " unless $first;
print $_;
$first = 0;
}
}
print "\n";
}
|