use /r to substitute in place
This commit is contained in:
parent
a7ac2aa7e8
commit
352d0b7402
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user