Specialty Forums
Security and Virus
General Hardware
CPUs/Overclocking
Networking
Digital Photo/Video
Office Software
PC Gaming
Console Gaming
Programming
Database
Web Development
Digital Home

General Forums
Windows XP
Windows Vista
Windows 95/98
Windows Me
Windows NT
Windows 2000
Win Server 2008
Win Server 2003
Windows 3.1
Linux
PDAs
BeOS
Novell Netware
OpenVMS
Solaris
Disk Op. System
Unix
Mac
OS/2

Drivers
Driver Scan
Driver Forum

Software
Automatic Updates

BIOS Updates

My Computing.Net

Solution Center

Free IT eBook

Howtos

Site Search

Message Find

RSS Feeds

Install Guides

Data Recovery

About

Home
Reply to Message Icon Go to Main Page Icon

How to check for null or empty stri

Original Message
Name: nimi
Date: July 19, 2007 at 20:44:00 Pacific
Subject: How to check for null or empty stri
OS: NA
CPU/Ram: NA
Model/Manufacturer: NA
Comment:
I need to check for value not equal (<>) to 21 and not equal empty or null values.

Please modify this script

if [ $VALUE -ne "21" ]
then
echo "$VALUE,$BSC_NAME,$BSC_ID" > $OUT_FILE/power_up.out
end if

thanks


Nimi


Report Offensive Message For Removal


Response Number 1
Name: James Boothe
Date: July 20, 2007 at 07:32:57 Pacific
Subject: How to check for null or empty stri
Reply: (edit)
Since $VALUE could evaluate to a null string, it needs to be double-quoted for syntactical place-holding.

The code below checks for either null value or an exact string check for 21 which can be placed in quotes if desired.  It would test false for a VALUE of 021.

if [ -z "$VALUE" -o "$VALUE" = 21 ] ; then
   echo 'VALUE is null or exact string "21"'
fi

The code below checks for either null value or a numerical check for 21. While the numeric test has the advantage (if desired) of testing positive for numerical equivalents such as +0000021, this code will throw an error message if $VALUE is non-integers.

if [ -z "$VALUE" -o "$VALUE" -eq 21 ] ; then
   echo 'VALUE is null or numerical 21'
fi


Report Offensive Follow Up For Removal




Use following form to reply to current message:

   Name: From My Computing.Net Settings
 E-Mail: From My Computing.Net Settings

Subject: How to check for null or empty stri

Comments:

 
  Homepage URL (*): 
Homepage Title (*): 
         Image URL: 
 


Data Recovery Software




XP Installed to G?

exessive internet traffic

ZoneAlarm Question. Blocked Connect

Windows Live Messenger Problem

Delete $Uninstall after SP3 updates


The information on Computing.Net is the opinions of its users. Such opinions may not be accurate and they are to be used at your own risk. Computing.Net cannot verify the validity of the statements made on this site. Computing.Net and Computing.Net, LLC hereby disclaim all responsibility and liability for the content of Computing.Net and its accuracy.
PLEASE READ THE FULL DISCLAIMER AND LEGAL TERMS BY CLICKING HERE

All content ©1996-2007 Computing.Net, LLC