From: Ben Ostrowsky Date: Thu, 18 Nov 2010 16:10:20 +0000 (+0000) Subject: (cosmetic) Adjust digits in column numbers to fit data X-Git-Url: http://git.equinoxoli.org/?p=migration-tools.git;a=commitdiff_plain;h=500f5ae6ff4d8e363f78f8727611f0a54d84c649 (cosmetic) Adjust digits in column numbers to fit data --- diff --git a/bibliofile/parse_dbd.pl b/bibliofile/parse_dbd.pl index 0a16c3a..f72347c 100755 --- a/bibliofile/parse_dbd.pl +++ b/bibliofile/parse_dbd.pl @@ -38,7 +38,7 @@ while (<>) { for (my $i = 1; $i <= $numcolumns; $i++) { my $coltype = substr($dbd, 7*($i-1)+$startOfColumnTypes, 1); my $collength = ord substr($dbd, 7*($i-1)+$startOfColumnTypes+1, 1); - printf ("Column %02d: %-8s %s (%d chars)\n", $i, $coltypes{$coltype}, $col[$i-1], $collength); + printf ("Column %0" . length($numcolumns) . "d: %-8s %s (%d chars)\n", $i, $coltypes{$coltype}, $col[$i-1], $collength); } }