5 lines
115 B
Bash
5 lines
115 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
c_gputemp=`nvidia-smi -q | grep 'GPU Current Temp' | awk '{print $(NF-1)}'`
|
||
|
echo GPU Temp: $c_gputemp C
|