From owner-freebsd-current@FreeBSD.ORG Fri Feb 18 08:37:10 2005 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B37216A4CE; Fri, 18 Feb 2005 08:37:10 +0000 (GMT) Received: from smtp.des.no (flood.des.no [217.116.83.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16BBB43D54; Fri, 18 Feb 2005 08:37:10 +0000 (GMT) (envelope-from des@des.no) Received: by smtp.des.no (Pony Express, from userid 666) id 55E51530C; Fri, 18 Feb 2005 09:37:08 +0100 (CET) Received: from xps.des.no (des.no [80.203.228.37]) by smtp.des.no (Pony Express) with ESMTP id 09DD85308; Fri, 18 Feb 2005 09:36:40 +0100 (CET) Received: by xps.des.no (Postfix, from userid 1001) id 8342333C35; Fri, 18 Feb 2005 09:36:40 +0100 (CET) To: Steve Kargl References: <4214F3C2.4020102@alumni.rice.edu> <20050217195547.GA33893@troutmask.apl.washington.edu> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Fri, 18 Feb 2005 09:36:40 +0100 In-Reply-To: <20050217195547.GA33893@troutmask.apl.washington.edu> (Steve Kargl's message of "Thu, 17 Feb 2005 11:55:47 -0800") Message-ID: <86is4qfenb.fsf@xps.des.no> User-Agent: Gnus/5.110002 (No Gnus v0.2) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on flood.des.no X-Spam-Level: X-Spam-Status: No, score=0.1 required=5.0 tests=AWL,FORGED_RCVD_HELO autolearn=disabled version=3.0.1 cc: Kaspars cc: freebsd-current@freebsd.org cc: Robert Watson Subject: Re: Change tar to GNU X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Feb 2005 08:37:10 -0000 Steve Kargl writes: > find $PATH -newermt 20050214 | xargs tar cf new.tar Bad idea, for a number of different reasons (including file names containing spaces or other special characters, and command line length limits). The following is slightly better, but will still fail if you have files with newlines in them: find $PATH -newermt 2005-02-14 | tar -c -f new.tar -T/dev/stdin DES --=20 Dag-Erling Sm=F8rgrav - des@des.no