To get the system CPU temperature in Fahrenheit in Rust, we'll need to make a system call and parse the output. Here's an example code that works on Linux:
main.rs451 chars16 lines
This code runs the sensors
command to get the system sensors, and then uses grep
and awk
to extract the CPU temperature in Celsius. It then converts this temperature to Fahrenheit and prints it to the console. Note that this code assumes that the CPU temperature is reported in Celsius and that the sensors
command is available on the system.
gistlibby LogSnag