Bourne shell "if" syntax

dteske at freebsd.org dteske at freebsd.org
Mon Jun 10 19:00:59 UTC 2013



> -----Original Message-----
> From: owner-freebsd-questions at freebsd.org [mailto:owner-freebsd-
> questions at freebsd.org] On Behalf Of lconrad at go2france.com
> Sent: Monday, June 10, 2013 11:53 AM
> To: freebsd-questions at freebsd.org
> Subject: Bourne shell "if" syntax
> 
> 
> 
> script fragment:
> 
> PTR=`dig @some.dns +short +norec -x a.b.c.d`
> 
> echo "$PTR"
> 
> if  [  "$PTR"  ==  ""  ]  ;  then
> 

if [ "$PTR" = "" ]; then

or

if [ -z "$PTR" ]; then

or

if [ "$PTR" ]; then

but _NOT_

if [ "$PTR" == "" ]; then

-- 
Devin


> echo "$PTR" >> /path/to/PTR_absent.txt
> 
> fi
> 
> ===========
> 
> output for an IP:
> 
> 
> a-b-c-d.domain.net.
> [: a-b-c-d.domain.net.: unexpected operator
> 
> thanks
> Len
> 
> 
> _______________________________________________
> freebsd-questions at freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questions-unsubscribe at freebsd.org"

_____________
The information contained in this message is proprietary and/or confidential. If you are not the intended recipient, please: (i) delete the message and all copies; (ii) do not disclose, distribute or use the message in any manner; and (iii) notify the sender immediately. In addition, please be aware that any message addressed to our domain is subject to archiving and review by persons other than the intended recipient. Thank you.


More information about the freebsd-questions mailing list