diff --git a/show_fingerprints.pl b/show_fingerprints.pl index 19bc01e6a943d5bb1efc0a0d1491ed49f93c9257..d71053abfa380cebb06f4b19c63d8fa375880d5b 100755 --- a/show_fingerprints.pl +++ b/show_fingerprints.pl @@ -19,7 +19,7 @@ my @files= <*.pub>; # print "files: ", join (' ', @files), "\n"; push (@files, <authorized_keys*>); -printf ("%-20s %5s %-51s %-6s %s\n", qw(file size fingerprint type notes)); +printf ("%-24s %5s %-51s %-7s %s\n", qw(file size fingerprint type notes)); foreach my $file (@files) { my @cmd= qw(ssh-keygen -l); @@ -36,7 +36,7 @@ foreach my $file (@files) if ($notes =~ m#(.+)\s+\((.+)\)#) { ($notes, $type)= ($1, $2) } $fp= join(':', $hash_algorithm, $fp) unless ($has_E); - printf ("%-20s %5d %-51s %-6s %s\n", $file, $size, $fp, $type, $notes); + printf ("%-24s %5d %-51s %-7s %s\n", $file, $size, $fp, $type, $notes); } }