From owner-freebsd-questions@FreeBSD.ORG Mon May 23 20:17:41 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 EA7CA16A41C for ; Mon, 23 May 2005 20:17:41 +0000 (GMT) (envelope-from derdrache@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D46A43D49 for ; Mon, 23 May 2005 20:17:41 +0000 (GMT) (envelope-from derdrache@gmail.com) Received: by wproxy.gmail.com with SMTP id 37so1796196wra for ; Mon, 23 May 2005 13:17:40 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=rdMqZXq5Bmi0LtTbJAxW7xITXMSMyyPrtQwyoIePU2cCBgXvofkFjK5s2UphYNFPKjHqQnZctD8QaW+VLSNDz4ka6ZfLc6M4lUIuhIRK0e+ZT3CgfYwmDsKeOMcKyVnCi7fdunk9rXQPLS8dhhn0J80Ly1vnWTHJErdIRhwyOjc= Received: by 10.54.65.13 with SMTP id n13mr3548487wra; Mon, 23 May 2005 13:17:40 -0700 (PDT) Received: by 10.54.28.16 with HTTP; Mon, 23 May 2005 13:17:39 -0700 (PDT) Message-ID: <59c289ef05052313175c8d33a5@mail.gmail.com> Date: Mon, 23 May 2005 16:17:39 -0400 From: DerDrache To: Tony Shadwick In-Reply-To: <20050521224321.A47072@mail.goinet.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <20050521133758.T48232@zoraida.natserv.net> <20050521224321.A47072@mail.goinet.com> Cc: Eugene Hercun , freebsd-questions@freebsd.org Subject: Re: downloading entire directories X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: DerDrache List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 20:17:42 -0000 On 5/21/05, Tony Shadwick wrote: > scp -pr user@remote_host:/path/of/dir/you/want/ /path/you/want/it/stored >=20 > Tony >=20 > On Sat, 21 May 2005, Francisco Reyes wrote: >=20 > > On Fri, 20 May 2005, Tony Shadwick wrote: > > > >> There are two ways you could do this. The first is like so: > > > > I believe there may be a third way. > > Have not done it in a while, but some FTP servers allow you to specify = a tar > > file from a directory. > > > > To be honest I don't recall syntax, but it was something like "get > > dirname.tar" and the FTP server would know to prepare a tar of the enti= re > > directory. Don't know which server(s) suppor(ed) this feature though. > > > > Long run something like rsync or unison are better options though. > > Although I think scp can download multiple files, but I don't know if i= t > > recurses. > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.o= rg" >=20 At the risk of redundently sounding redundent, I think wget might be up your alley. Makes this a very simple operation. wget -r ftp://user:password@host.com/path/to/folder --=20 DerDrache