From owner-freebsd-questions@FreeBSD.ORG Mon Jun 10 19:03:16 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id AD7901C9 for ; Mon, 10 Jun 2013 19:03:16 +0000 (UTC) (envelope-from tundra@tundraware.com) Received: from ozzie.tundraware.com (ozzie.tundraware.com [75.145.138.73]) by mx1.freebsd.org (Postfix) with ESMTP id 795351B33 for ; Mon, 10 Jun 2013 19:03:16 +0000 (UTC) Received: from [10.219.130.119] ([66.175.245.1]) (authenticated bits=0) by ozzie.tundraware.com (8.14.7/8.14.7) with ESMTP id r5AJ2x2L024151 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Mon, 10 Jun 2013 14:03:00 -0500 (CDT) (envelope-from tundra@tundraware.com) Message-ID: <51B622EE.2090002@tundraware.com> Date: Mon, 10 Jun 2013 14:03:10 -0500 From: Tim Daneliuk Organization: TundraWare Inc. User-Agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130329 Thunderbird/17.0.5 MIME-Version: 1.0 To: lconrad@go2france.com Subject: Re: Bourne shell "if" syntax References: <51b620a6.42f.2b6a6400.5605dcf0@go2france.com> In-Reply-To: <51b620a6.42f.2b6a6400.5605dcf0@go2france.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.4.3 (ozzie.tundraware.com [75.145.138.73]); Mon, 10 Jun 2013 14:03:00 -0500 (CDT) X-TundraWare-MailScanner-Information: Please contact the ISP for more information X-TundraWare-MailScanner-ID: r5AJ2x2L024151 X-TundraWare-MailScanner: Found to be clean X-TundraWare-MailScanner-From: tundra@tundraware.com X-Spam-Status: No Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: tundra@tundraware.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jun 2013 19:03:16 -0000 On 06/10/2013 01:53 PM, lconrad@go2france.com wrote: > > > script fragment: > > PTR=`dig @some.dns +short +norec -x a.b.c.d` > > echo "$PTR" > > if [ "$PTR" == "" ] ; then > > 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 > Try this instead and see if this fixes it: if [ _"$PTR" == _ ] ; then ----------------------------------------------------------------------- Tim Daneliuk