Bourne shell "if" syntax

dteske at freebsd.org dteske at freebsd.org
Mon Jun 10 19:01:40 UTC 2013



> -----Original Message-----
> From: Devin Teske [mailto:devin.teske at fisglobal.com] On Behalf Of
> dteske at freebsd.org
> Sent: Monday, June 10, 2013 11:59 AM
> To: lconrad at go2france.com; freebsd-questions at freebsd.org
> Cc: Devin Teske
> Subject: RE: Bourne shell "if" syntax
> 
> 
> 
> > -----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
> 

err, that should have been:

or

if [ ! "$PTR" ]; then

-- 
Devin


> 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.

_____________
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