From owner-freebsd-questions@FreeBSD.ORG Mon Oct 1 11:44:13 2007 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 8919316A418 for ; Mon, 1 Oct 2007 11:44:13 +0000 (UTC) (envelope-from jhall@vandaliamo.net) Received: from trueband.net (director.trueband.net [216.163.120.8]) by mx1.freebsd.org (Postfix) with SMTP id 153C613C44B for ; Mon, 1 Oct 2007 11:44:12 +0000 (UTC) (envelope-from jhall@vandaliamo.net) Received: (qmail 26446 invoked by uid 1006); 1 Oct 2007 11:44:12 -0000 Received: from jhall@vandaliamo.net by rs0 by uid 1003 with qmail-scanner-1.16 (spamassassin: 3.1.4. Clear:SA:0(-1.4/100.0):. Processed in 0.757661 secs); 01 Oct 2007 11:44:12 -0000 X-Spam-Status: No, hits=-1.4 required=100.0 X-Spam-Level: Received: from unknown (HELO trueband.net) (172.16.0.12) by -v with SMTP; 1 Oct 2007 11:44:11 -0000 Received: (qmail 13951 invoked from network); 1 Oct 2007 11:44:10 -0000 Received: from unknown (HELO admintool.trueband.net) (127.0.0.1) by -v with SMTP; 1 Oct 2007 11:44:10 -0000 Received: from 12.170.206.13 (SquirrelMail authenticated user jhall@vandaliamo.net) by admintool.trueband.net with HTTP; Mon, 1 Oct 2007 11:44:10 -0000 (GMT) Message-ID: <4692.12.170.206.13.1191239050.squirrel@admintool.trueband.net> In-Reply-To: <20070930150439.GB2187@kobe.laptop> References: <21079.67.171.53.31.1191004462.squirrel@admintool.trueband.net> <20070930150439.GB2187@kobe.laptop> Date: Mon, 1 Oct 2007 11:44:10 -0000 (GMT) From: jhall@vandaliamo.net To: "Giorgos Keramidas" User-Agent: SquirrelMail/1.4.4 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: jhall@vandaliamo.net, freebsd-questions@freebsd.org Subject: Re: Adding CR/LF 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: Mon, 01 Oct 2007 11:44:13 -0000 > On 2007-09-28 18:34, jhall@vandaliamo.net wrote: >> I know this should be easy, but I cannot get it to work right. >> Basically, I have a list of items, and I need to place each one on a >> separate line. >> >> Here is the script I am using. >> #!/bin/sh >> FILENAMES="test1 test2 test3" >> FILELIST="" >> for filename in ${FILENAMES} >> do >> FILELIST="${FILELIST}${filename}"$'\n\r' >> echo ${FILELIST} >> done >> >> And, here is the output I am getting. >> test1$\n\r >> test1$\n\rtest2$\n\r >> test1$\n\rtest2$\n\rtest3$\n\r >> >> The output I would like to see is: >> test1 >> test2 >> test3 > > How about skipping the trick with '\n\r' altogether? > > This should work better: > > #!/bin/sh > > FILENAMES="test1 test2 test3" > > for fname in ${FILENAMES} > do > echo "${fname}" > done > > Thanks. I hadn't thought of that. Jay