From owner-freebsd-questions@FreeBSD.ORG Thu Apr 2 06:48:58 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 96D68106564A for ; Thu, 2 Apr 2009 06:48:58 +0000 (UTC) (envelope-from perryh@pluto.rain.com) Received: from agora.rdrop.com (agora.rdrop.com [199.26.172.34]) by mx1.freebsd.org (Postfix) with ESMTP id 6F8E18FC18 for ; Thu, 2 Apr 2009 06:48:58 +0000 (UTC) (envelope-from perryh@pluto.rain.com) Received: from agora.rdrop.com (66@localhost [127.0.0.1]) by agora.rdrop.com (8.13.1/8.12.7) with ESMTP id n326mvOn016526 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 1 Apr 2009 23:48:57 -0700 (PDT) (envelope-from perryh@pluto.rain.com) Received: (from uucp@localhost) by agora.rdrop.com (8.13.1/8.12.9/Submit) with UUCP id n326mvEx016525; Wed, 1 Apr 2009 23:48:57 -0700 (PDT) Received: from fbsd61 by pluto.rain.com (4.1/SMI-4.1-pluto-M2060407) id AA14299; Wed, 1 Apr 09 22:40:30 PST Date: Wed, 01 Apr 2009 23:38:52 -0700 From: perryh@pluto.rain.com To: ohartman@zedat.fu-berlin.de Message-Id: <49d45d7c./wDEMGr6x3pE39QQ%perryh@pluto.rain.com> References: <49D39153.4020707@zedat.fu-berlin.de> In-Reply-To: <49D39153.4020707@zedat.fu-berlin.de> User-Agent: nail 11.25 7/29/05 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Fetching directories inclusive subdirectories on HTTP server via fetch or othe FreeBSD-own tools? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Apr 2009 06:48:59 -0000 "O. Hartmann" wrote: > I need to fetch a whole directory tree from a public remote site. > The top level directory and its subdirectories are accessible via > ftp:// and http:// so I tried fetch, but fetch does only retrieve > data on file basis and does not copy a whole directory tree > recursively. The remote site does not offer sftp/sshd for that > purpose. There's at least one ftp server (wuftpd) that will do it for you on the server end. All you have to do is "get {dirname}.tar". (The .tar file won't appear in the directory listing, because it's created on the fly.) It might be worth a try, to see if the server of interest happens to be set up this way.