Skip to content
Snippets Groups Projects
Commit fb514b59 authored by Phaidra Admin's avatar Phaidra Admin
Browse files

table formatting: more space

parent 6888c924
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment