> -----Original Message-----
> From: owner-freebsd-questi...@freebsd.org [mailto:owner-freebsd-
> questi...@freebsd.org] On Behalf Of lcon...@go2france.com
> Sent: Monday, June 10, 2013 11:53 AM
> To: freebsd-questions@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@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questions-unsubscr...@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.
_______________________________________________
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

Reply via email to