You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
365 B
22 lines
365 B
@rem = '-*- Mode: Perl -*-
|
|
@goto endofperl
|
|
';
|
|
|
|
$maxlen = 250;
|
|
$H = "[0-9A-Fa-f]";
|
|
|
|
while (<ARGV>) {
|
|
chop;
|
|
|
|
if (/^(\s*$H+:$H+\s*)(\S+)(.*$)/ &&
|
|
length($2) > $maxlen) {
|
|
$f = substr($2,0,$maxlen);
|
|
print "$1$f$3\n";
|
|
} else {
|
|
print "$_\n";
|
|
}
|
|
}
|
|
|
|
__END__
|
|
:endofperl
|
|
@perl %0 %1 %2 %3 %4 %5 %6 %7 %8 %9
|