]> WPIA git - cassiopeia.git/blobdiff - lib/openssl/util/tab_num.pl
upd: openssl to 1.1.0
[cassiopeia.git] / lib / openssl / util / tab_num.pl
diff --git a/lib/openssl/util/tab_num.pl b/lib/openssl/util/tab_num.pl
deleted file mode 100755 (executable)
index a81ed0e..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/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++;
-       }
-