From owner-freebsd-questions@FreeBSD.ORG Wed Apr 7 01:12:26 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 517FA16A4CF for ; Wed, 7 Apr 2004 01:12:26 -0700 (PDT) Received: from gwdu60.gwdg.de (gwdu60.gwdg.de [134.76.8.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5359943D48 for ; Wed, 7 Apr 2004 01:12:25 -0700 (PDT) (envelope-from kheuer2@gwdg.de) Received: from gwdu60.gwdg.de (localhost [127.0.0.1]) by gwdu60.gwdg.de (8.12.9p2/8.12.8) with ESMTP id i378BxrB043663; Wed, 7 Apr 2004 10:11:59 +0200 (CEST) (envelope-from kheuer2@gwdg.de) Received: from localhost (kheuer2@localhost)i378BxN4043660; Wed, 7 Apr 2004 10:11:59 +0200 (CEST) X-Authentication-Warning: gwdu60.gwdg.de: kheuer2 owned process doing -bs Date: Wed, 7 Apr 2004 10:11:59 +0200 (CEST) From: Konrad Heuer To: Jerry Hatok In-Reply-To: <000801c41c77$35828a50$2e01a8c0@Craig> Message-ID: <20040407101028.X30924@gwdu60.gwdg.de> References: <000801c41c77$35828a50$2e01a8c0@Craig> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-questions@FreeBSD.org Subject: Re: howto X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Apr 2004 08:12:26 -0000 On Wed, 7 Apr 2004, Jerry Hatok wrote: > Hello, > > I am trying to copy files from a cd I have into my usr directory. > The cd has one directory with a lot of subdirectories and files. Is > there a command that I can copy everything at once? If so what is it? > If not what would you suggest being the fastest way to copy everything? cd /to/target/directory tar cCf /cdrom - . | tar xvpf - Regards Konrad Heuer