add script for acquis cleaning

This commit is contained in:
Hieu Hoang 2016-04-19 10:02:46 +01:00
parent 31c8946c8c
commit 7d96adb2a7

View File

@ -0,0 +1,15 @@
#!/usr/bin/perl -w
use strict;
while(<STDIN>) {
chop;
my $first = 1;
foreach (split) {
if (length($_)<200) {
print " " unless $first;
print $_;
$first = 0;
}
}
print "\n";
}