From owner-svn-ports-head@FreeBSD.ORG Thu Sep 6 20:01:46 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE59B106564A for ; Thu, 6 Sep 2012 20:01:46 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CCB1C8FC1C for ; Thu, 6 Sep 2012 20:01:46 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q86K1k1j053109 for ; Thu, 6 Sep 2012 20:01:46 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q86K1kdA053094 for svn-ports-head@freebsd.org; Thu, 6 Sep 2012 20:01:46 GMT (envelope-from bdrewery) Received: (qmail 32763 invoked from network); 6 Sep 2012 15:01:42 -0500 Received: from unknown (HELO ?192.168.0.74?) (freebsd@shatow.net@74.94.87.209) by sweb.xzibition.com with ESMTPA; 6 Sep 2012 15:01:42 -0500 Message-ID: <50490134.2090507@FreeBSD.org> Date: Thu, 06 Sep 2012 15:01:56 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20120824 Thunderbird/15.0 MIME-Version: 1.0 To: Doug Barton , Florian Smeets References: <201209032233.q83MXSa2053725@svn.freebsd.org> <50453146.2080707@smeets.im> <504537D2.5050608@FreeBSD.org> <50454279.4020309@smeets.im> <50457770.4060402@FreeBSD.org> <5045E904.5080608@smeets.im> <50462DEC.3040202@FreeBSD.org> In-Reply-To: <50462DEC.3040202@FreeBSD.org> X-Enigmail-Version: 1.4.4 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r303626 - head/www/xpi-firebug X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Sep 2012 20:01:47 -0000 On 9/4/2012 11:35 AM, Doug Barton wrote: > Take a file with no newline at the end. Do this: > > while read line ; do > echo $line > done < badfile # echo 'test1' > test # echo -n 'test2' >> test # while read line; do echo "line: $line"; done < test line: test1 2nd line not seen. # echo "" >> test # while read line; do echo "line: $line"; done < test line: test1 line: test2 -- Regards, Bryan Drewery bdrewery@freenode/EFNet