From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24640 invoked by alias); 11 Oct 2010 15:25:48 -0000 Received: (qmail 24450 invoked by uid 22791); 11 Oct 2010 15:25:37 -0000 X-Spam-Check-By: sourceware.org Received: from pool-98-110-186-10.bstnma.fios.verizon.net (HELO cgf.cx) (98.110.186.10) by sourceware.org (qpsmtpd/0.83/v0.83-20-g38e4449) with ESMTP; Mon, 11 Oct 2010 15:25:33 +0000 Received: from ednor.cgf.cx (ednor.casa.cgf.cx [192.168.187.5]) by cgf.cx (Postfix) with ESMTP id 0BEEE13C061; Mon, 11 Oct 2010 11:25:32 -0400 (EDT) Received: by ednor.cgf.cx (Postfix, from userid 201) id 085512B352; Mon, 11 Oct 2010 11:25:32 -0400 (EDT) Date: Mon, 11 Oct 2010 15:25:00 -0000 From: Christopher Faylor To: Hui Zhu , gdb@sourceware.org Subject: Re: Question about "cvs update" Message-ID: <20101011152531.GA27829@ednor.casa.cgf.cx> Mail-Followup-To: Hui Zhu , gdb@sourceware.org References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.20 (2009-06-14) Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2010-10/txt/msg00030.txt.bz2 On Mon, Oct 11, 2010 at 03:49:56PM +0800, Hui Zhu wrote: >Hi guys, > >"cvs update -d" will make the src directory include a lot of other >softwares like binutils, sid and so on. > >I want keep the directory just have the file of GDB. I tried "cvs >update -dP". But it still tried to checkout the files of other >softwares. > >Could someone tell me how to update the all src directory and do not >co the files of other softwares. cvs update -l for f in */.; do (cd $f && exec cvs update -d) done cgf