From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24581 invoked by alias); 27 Sep 2011 09:09:17 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 16439 Received: (qmail 28807 invoked from network); 27 Sep 2011 09:09:04 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE, T_TO_NO_BRKTS_FREEMAIL,UNPARSEABLE_RELAY autolearn=ham version=3.3.1 Received-SPF: none (ns1.primenet.com.au: domain at yahoo.co.uk does not designate permitted sender hosts) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.co.uk; s=s1024; t=1317114131; bh=ZHRoKSqhsxor5ZxC80ptzFg+mxzhWJ7LU/Gxq+qVZWI=; h=X-Yahoo-Newman-Id:X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:Received:Received:In-reply-to:From:References:To:Subject:MIME-Version:Content-Type:Content-ID:Date:Message-ID; b=P7IAzQ9i9IwrbB8ul5nIOvsfNuFWzBdxBCHEEL+AESJnBHyrJ9saITOuNjBodL9S4uTus1fmL75+qhW+Ard29Vgg09q7odfG3JddDBqn7ckGRY9llpPhg4R4fb7wTkOgAOMFjJQLhDrxA6HJyc2wpyXL1YrKwbTQIcTKLRkb6nA= X-Yahoo-Newman-Id: 404864.27929.bm@smtp134.mail.ukl.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: FHbGrGAVM1nMcw8OA6OsoAABvjPKcssLtBagM31IbAWjsvZ UGBD5H76BmOxh_Y5T212J0L0r0lPYs1_SwklbaA37O.VTStnUelbDTRa0SQi 99vGoIpZxSyulDJFpVjKVkw82XgPN8oDBiTViv6H3XdeVSt.aCYV_uhUQLmL U2ysOqIKQEODg9o7knH2wp7R5zwSl_0einJM3Nxk7UCki78wbe8WLQ3P65pZ uuYWAxbol62KNhvBcotgQ0jMk4hlQdl6d.GvhoRTJ1x37YoxKNJ1gRI3ZHSt Pyf99z6_kerzjL94gkC_7aSbJvK0vec3xh71JHfbLiFdzoUv7UyEb7LWICG9 fhP6SPvLR1CwjXYc_7aR48hNa1FEy7tVVE_m0V54- X-Yahoo-SMTP: opAkk_CswBAce_kJ3nIPlH80cJI- In-reply-to: <1316755389.16877.YahooMailClassic@web65616.mail.ac4.yahoo.com> From: Oliver Kiddle References: <1316755389.16877.YahooMailClassic@web65616.mail.ac4.yahoo.com> To: zsh-users@zsh.org Subject: Re: pure zsh implementation of wget MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <24985.1317114126.1@thecus.kiddle.eu> Date: Tue, 27 Sep 2011 11:02:10 +0200 Message-ID: <24993.1317114130@thecus.kiddle.eu> On 22 Sep, Guido van Steen wrote: > Thanks a lot! With these additions it also works for me. > > How difficult would it be to make this handle https as well? You can easily run openssl or stunnel in a coprocess to handle the SSL for you: openssl s_client -quiet -connect host:443 But this doesn't really meet your requirement of pure zsh: you might aswell be running wget. Oliver