From owner-freebsd-questions@FreeBSD.ORG Fri Sep 5 22:19:28 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2AFE51065675 for ; Fri, 5 Sep 2008 22:19:28 +0000 (UTC) (envelope-from bounces@nabble.com) Received: from kuber.nabble.com (kuber.nabble.com [216.139.236.158]) by mx1.freebsd.org (Postfix) with ESMTP id F09378FC0A for ; Fri, 5 Sep 2008 22:19:27 +0000 (UTC) (envelope-from bounces@nabble.com) Received: from isper.nabble.com ([192.168.236.156]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from ) id 1KbjeI-00035r-PE for freebsd-questions@freebsd.org; Fri, 05 Sep 2008 15:19:26 -0700 Message-ID: <19340538.post@talk.nabble.com> Date: Fri, 5 Sep 2008 15:19:26 -0700 (PDT) From: Jim Hertzler To: freebsd-questions@freebsd.org In-Reply-To: <499449.17617.qm@web57002.mail.re3.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: jimhertzler@ntelos.net References: <499449.17617.qm@web57002.mail.re3.yahoo.com> Subject: Re: string split, bash and IFS X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Sep 2008 22:19:28 -0000 Go to: http://www.linuxquestions.org/questions/programming-9/bash-shell-script-split-array-383848/?posted=1#post3270996 And see: IP=1.2.3.4; IP=(${IP//./ }); Rev=${IP[3]}.${IP[2]}.${IP[1]}.${IP[0]} Unga wrote: > > Hi all > > How to use bash and IFS to split a string? > > eg. > $string = "Name:Surname:10" > IFS=: > echo "$string" | read name surname age > > This does not work for some reason. The read does not create name, surname > and age variables. Any idea why? > > Appreciate your reply. > > Kind regards > Unga > > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" > > -- View this message in context: http://www.nabble.com/string-split%2C-bash-and-IFS-tp19140697p19340538.html Sent from the freebsd-questions mailing list archive at Nabble.com.