10 lines
102 B
Bash
Executable File
10 lines
102 B
Bash
Executable File
#!/bin/bash
|
|
|
|
lmsensors=`which sensors`
|
|
|
|
if [ $? -eq 0 ]
|
|
then
|
|
echo '<<<lmsensors>>>'
|
|
$lmsensors
|
|
fi
|