Revision a06ec5a26fdb24fd829abef54422d94521ddd14a authored by Matt Caswell on 11 June 2015, 14:13:36 UTC, committed by Matt Caswell on 11 June 2015, 14:13:36 UTC
Reviewed-by: Stephen Henson <steve@openssl.org>
1 parent 62bbfe0
tab_num.pl
#!/usr/local/bin/perl
$num=1;
$width=40;
while (<>)
{
chop;
$i=length($_);
$n=$width-$i;
$i=int(($n+7)/8);
print $_.("\t" x $i).$num."\n";
$num++;
}

Computing file changes ...