pub fn get_cpu_info() -> StringExpand description
Get CPU model name (best effort).
On Linux, reads /proc/cpuinfo for the “model name” field.
Returns "Unknown CPU" on other platforms or if parsing fails.
§Examples
use batuta_common::sys::get_cpu_info;
let info = get_cpu_info();
assert!(!info.is_empty());