summaryrefslogtreecommitdiffstats
path: root/crypto/openssl/util/tab_num.pl
blob: a81ed0edc2452ce7b1ae9adc857c187e1ca01de9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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++;
	}

OpenPOWER on IntegriCloud