Revision 872e681c00a713e840ebed77a4e05fa0e181f16f authored by Matt Caswell on 15 October 2014, 12:54:46 UTC, committed by Matt Caswell on 15 October 2014, 12:54:46 UTC
Reviewed-by: Stephen Henson <steve@openssl.org>
1 parent 38b71ba
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 ...