Sponsored Content
Full Discussion: Test temperature and alert
Top Forums Shell Programming and Scripting Test temperature and alert Post 303023734 by drysdalk on Friday 21st of September 2018 10:24:05 AM
Old 09-21-2018
Hi,

If all you're looking for is a way in Bash to test the value of a number, then the if statement can handle that on its own.

For example, here's a script that will test a previously-defined number, and display one message if it's less than or equal to 90 (the meaning of the -le arithmetic operator), and a different message if any other condition is met (i.e. if it's greater than 90):

Code:
$ cat example.sh
#!/bin/bash
randomnumber=`/usr/bin/shuf -i 1-100 -n 1`
echo "Considering: $randomnumber"

if [ "$randomnumber" -le "90" ]
then
        echo "Less than or equal to 90, so that's OK"
        exit 0
else
        echo "Oh no, it's greater than 90 !"
        exit 1
fi

Here's the output of a sample session:

Code:
$ ./example.sh 
Considering: 5
Less than or equal to 90, so that's OK
$ ./example.sh 
Considering: 91
Oh no, it's greater than 90 !
$ ./example.sh 
Considering: 27
Less than or equal to 90, so that's OK
$

So if all you're looking for is "If less than X do this, if greater than X do the other" the if statement is probably all you need. Hope this helps.
 

9 More Discussions You Might Find Interesting

1. HP-UX

temperature records

I'm fairly new to hpux, so this is what i've been trying to figure out. Is it possible to get any logs on hpux that would indicate if the system, cpu, or other hardware components reached above normal or critical temperatures? Thanks, -K (0 Replies)
Discussion started by: uzerx
0 Replies

2. SCO

temperature monitor

Is there command in sco unixware 7.1.3 from which i can find the temperature of the system/hardware. Something equivalent to prtdiag in solaris maybe thanks (1 Reply)
Discussion started by: gsb81
1 Replies

3. Solaris

CPU temperature

Hi all I have a SUN V480 server with 4 processores and I've noticed that the temperature for 2 of the 4 processers are quite high (63 degrees Celsius). Does anyone know what the operating temperatures of the Sparc CPU's are? I'm not getting any warning messages yet, but I want to resolve the... (3 Replies)
Discussion started by: soliberus
3 Replies

4. Filesystems, Disks and Memory

Hard Drive Temperature?

Hi, I just set up a raid Z array in solaris xpress and I notice that the drives feel pretty damn hot. I use speedfan to monitor the temperatures of the hard drives in XP. Is there a similar program for solrais? I assume there would be since the drives all have temp sensors in them, but I... (2 Replies)
Discussion started by: ciscocbee
2 Replies

5. Shell Programming and Scripting

Test on string containing spacewhile test 1 -eq 1 do read a $a if test $a = quitC then break fi d

This is the code: while test 1 -eq 1 do read a $a if test $a = stop then break fi done I read a command on every loop an execute it. I check if the string equals the word stop to end the loop,but it say that I gave too many arguments to test. For example echo hello. Now the... (1 Reply)
Discussion started by: Max89
1 Replies

6. Solaris

CPU Temperature Details

How to get a CPU temperature and current power consumption in T5220 server both from system controller and Operating system. I need details by cores. Thanks in advance. (13 Replies)
Discussion started by: fugitive
13 Replies

7. UNIX for Dummies Questions & Answers

MAKING A SCRIPT FOR TEMPERATURE

People hello to everybody exist a way to do a script for view the temperature. I have Red Hat Linux release 9 (Shrike) Kernel 2.4.20-8 on an i686 THANk YOU FOR YOUR TIME. (4 Replies)
Discussion started by: enkei17
4 Replies

8. Shell Programming and Scripting

How to check weather a string is like test* or test* ot *test* in if condition

How to check weather a string is like test* or test* ot *test* in if condition (5 Replies)
Discussion started by: johnjerome
5 Replies

9. Solaris

reading temperature again and ipmitool

some say '/usr/sfw/bin/ipmitool' can be used to read temperature. has anyone tried it? what options should be used? (1 Reply)
Discussion started by: orange47
1 Replies
Device::USB::PCSensor::HidTEMPer::TEMPer::Internal(3pm) User Contributed Perl DocumentationDevice::USB::PCSensor::HidTEMPer::TEMPer::Internal(3pm)

       Device::USB::PCSensor::HidTEMPer::TEMPer::Internal - The HidTEMPer internal sensor

VERSION
Version 0.02 SYNOPSIS
None DESCRIPTION
This is the implementation of the HidTEMPer internal sensor. CONSTANTS o MAX_TEMPERATURE The highest temperature(120 degrees celsius) this sensor can detect. o MIN_TEMPERATURE The lowest temperature(-40 degrees celsius) this sensor can detect. METHODS o celsius() Returns the current temperature from the device in celsius degrees. INHERIT METHODS FROM
Device::USB::PCSensor::HidTEMPer::Sensor DEPENDENCIES
This module internally includes and takes use of the following packages: use Device::USB::PCSensor::HidTEMPer::Sensor; This module uses the strict and warning pragmas. BUGS
Please report any bugs or missing features using the CPAN RT tool. FOR MORE INFORMATION
None AUTHOR
Magnus Sulland < msulland@cpan.org > ACKNOWLEDGEMENTS
This code is inspired by Relavak's source code and the comments found at: http://relavak.wordpress.com/2009/10/17/ temper-temperature-sensor-linux-driver/ COPYRIGHT &; LICENSE Copyright (c) 2010 Magnus Sulland This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2010-07-24 Device::USB::PCSensor::HidTEMPer::TEMPer::Internal(3pm)
All times are GMT -4. The time now is 12:25 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy