diff options
author | stderr64 <linuxwizard@voidnet.dy.fi> | 2023-12-26 20:27:23 +0200 |
---|---|---|
committer | stderr64 <linuxwizard@voidnet.dy.fi> | 2023-12-26 20:27:23 +0200 |
commit | 8b82b7d85ab99f6e51688a586b2ef2c510526587 (patch) | |
tree | 760ef4527b52bb04b0f2cea72ca1f8c7e2845fb6 | |
parent | 12499a35529c7098fe53aa6601190d81f01dbb85 (diff) | |
download | osstat-master.tar.gz osstat-master.tar.zst |
-rwxr-xr-x | osstat.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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++; } } |