From owner-freebsd-questions@FreeBSD.ORG Mon Nov 11 15:00:01 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C20FDF97 for ; Mon, 11 Nov 2013 15:00:01 +0000 (UTC) (envelope-from fluca1978@gmail.com) Received: from mail-we0-x231.google.com (mail-we0-x231.google.com [IPv6:2a00:1450:400c:c03::231]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 611442D19 for ; Mon, 11 Nov 2013 15:00:01 +0000 (UTC) Received: by mail-we0-f177.google.com with SMTP id t60so1045038wes.8 for ; Mon, 11 Nov 2013 06:59:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=OAB4WDxO/45toXFd1ns3Fgundsoo6lnLq8kA33vVWWo=; b=c08U/Bs+1IP0/9HZjWt+ON3q3Ymw2D1d2J6LJSOPGSCkayCd04lKX8/TMFgNd4McgI ZDYilsFV9nKAVStdWMuWQHDhkyuGH2zQMjCavG+AqydqOjpGuP+q5JW9rPXNqpbda030 2i1WQ403fkYR/nFpcLhx+8htbr4GpKDk2TQggliQkIRdEL1r8oEX/5V/2NCFlQHJsE7v YkRq+HPOA+IYb7qiAQlHii/qnbX3FmXpl7Q0zYh89rRfspzEM9EJ/cu8digb5J8Tjm9Y IxAX9AqMaEMUrhWG1HgszQTmrEBL3shRlspU/K17kDKbh5NIcYpIwNDWv0ztlceiTdyG p3BA== MIME-Version: 1.0 X-Received: by 10.180.94.100 with SMTP id db4mr12685324wib.14.1384181999778; Mon, 11 Nov 2013 06:59:59 -0800 (PST) Sender: fluca1978@gmail.com Received: by 10.194.44.6 with HTTP; Mon, 11 Nov 2013 06:59:59 -0800 (PST) In-Reply-To: <20131111141737.05813fed@gumby.homeunix.com> References: <20131111141737.05813fed@gumby.homeunix.com> Date: Mon, 11 Nov 2013 15:59:59 +0100 X-Google-Sender-Auth: BWswghADaRnhSYEtAEYItWgx1uU Message-ID: Subject: Re: freebsd-update: fetch or phttpget? From: Luca Ferrari To: RW Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Nov 2013 15:00:01 -0000 On Mon, Nov 11, 2013 at 3:17 PM, RW wrote: > phttpget is very basic, but does support http pipelining, so it's much > faster downloading a lot of small files - in the script phttpget is > always used with xargs. fetch is used for individual files, it has more > features and better error reporting. Thanks for the explaination. Now, since I'm behind a proxy that requires basic authentication, how can I handle the two different programs? fetch accepts something like http_proxy = "http://user:pass@proxy:port" while phttpget seems to me requires: http_proxy = "http://proxy:port" http_proxy_auth = "basic:::user:pass" Thanks, Luca