use /r to substitute in place

main
Yanick Champoux 2023-08-26 11:13:06 -04:00
parent a7ac2aa7e8
commit 352d0b7402
1 changed files with 2 additions and 4 deletions

View File

@ -59,10 +59,8 @@ sub generate_output_table ($ts) {
foreach my $row ( $ts->rows ) {
foreach my $cell ($row) {
my $machine = @$cell[0];
my $ghz_days = @$cell[6];
$ghz_days =~ s/\s//g;
my $days = @$cell[4];
$days =~ s/\s//g;
my $days = @$cell[4] =~ s/\s//gr;
my $ghz_days = @$cell[6] =~ s/\s//gr;
if ( $days > 0 ) {
my $perf = $ghz_days / $days;