From owner-freebsd-questions@FreeBSD.ORG Sun Jul 3 16:14:12 2005 Return-Path: X-Original-To: freebsd-questions@FreeBSD.ORG Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CF9B16A41C for ; Sun, 3 Jul 2005 16:14:12 +0000 (GMT) (envelope-from fbsd_user@a1poweruser.com) Received: from mta9.adelphia.net (mta9.adelphia.net [68.168.78.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF82D43D45 for ; Sun, 3 Jul 2005 16:14:11 +0000 (GMT) (envelope-from fbsd_user@a1poweruser.com) Received: from barbish ([69.172.31.81]) by mta9.adelphia.net (InterMail vM.6.01.04.01 201-2131-118-101-20041129) with SMTP id <20050703161411.NELF29002.mta9.adelphia.net@barbish> for ; Sun, 3 Jul 2005 12:14:11 -0400 From: "fbsd_user" To: "freebsd-questions@FreeBSD. ORG" Date: Sun, 3 Jul 2005 12:14:05 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <6BD492A9-2A38-49C8-B0E2-507F1B9964B2@amadeus.demon.nl> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Cc: Subject: RE: help with sh script X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: fbsd_user@a1poweruser.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2005 16:14:12 -0000 On 03 jul 2005, at 15:39, fbsd_user wrote: >> What is the sh coding to strip the periods from a IP address?? >> >> >> raw_ip='10.0.10.5' this is starting >> num_ip='100105' and this is what I need to convert to. >> >> >> >Hi, >many ways, here's one: > >printf '10.0.10.5' | sed 's/\.//g' > >Arno ***************************************** Thanks but I need a little more help. num_ip="(printf $raw_ip | sed 's/\.//g')" gives me a error. What would the correct syntax be? I am trying to write script to insert rules into PF firewall on 5.4. using pf anchors.