summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstderr64 <linuxwizard@voidnet.dy.fi>2023-12-26 20:27:23 +0200
committerstderr64 <linuxwizard@voidnet.dy.fi>2023-12-26 20:27:23 +0200
commit8b82b7d85ab99f6e51688a586b2ef2c510526587 (patch)
tree760ef4527b52bb04b0f2cea72ca1f8c7e2845fb6
parent12499a35529c7098fe53aa6601190d81f01dbb85 (diff)
downloadosstat-8b82b7d85ab99f6e51688a586b2ef2c510526587.tar.gz
osstat-8b82b7d85ab99f6e51688a586b2ef2c510526587.tar.zst
Added missing MHz after CPU cores speedsHEADmaster
-rwxr-xr-xosstat.pl2
1 files changed, 1 insertions, 1 deletions
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]."<br/>";
+ $full_output .= "Core ".$ccount. " speed: ".$spl_speed[1]." MHz<br/>";
$ccount++;
}
}