in reply to Question about oddities when printing a tab
Or you can consider using Perl6::Form instead of format.[a]
This works for me:
[a] Though I am with LanX on using printf if your initial script doesn't work like you want. Updateuse warnings; use strict; use Perl6::Form; my @systems = qw(SERVER1 SERVER2 SERVER3); foreach my $system (@systems) { print form "Now powering on : {|||||} {||||||}", $system, "[DONE]"; }
|
|---|