From 8b82b7d85ab99f6e51688a586b2ef2c510526587 Mon Sep 17 00:00:00 2001 From: stderr64 Date: Tue, 26 Dec 2023 20:27:23 +0200 Subject: Added missing MHz after CPU cores speeds --- osstat.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osstat.pl b/osstat.pl index 1a0df42..ec77bef 100755 --- a/osstat.pl +++ b/osstat.pl @@ -25,7 +25,7 @@ my $ccount = 1; while ( $fline = <$cpu> ){ if ( $fline =~ m/cpu mhz/i ){ @spl_speed = split( m/: /, $fline ); - $full_output .= "Core ".$ccount. " speed: ".$spl_speed[1]."
"; + $full_output .= "Core ".$ccount. " speed: ".$spl_speed[1]." MHz
"; $ccount++; } } -- cgit v1.2.3-86-g962b