From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11329 invoked from network); 22 Oct 2008 18:36:02 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00 autolearn=ham version=3.2.5 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 22 Oct 2008 18:36:02 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 78140 invoked from network); 22 Oct 2008 18:35:28 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 22 Oct 2008 18:35:28 -0000 Received: (qmail 7231 invoked by alias); 22 Oct 2008 18:34:34 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 13377 Received: (qmail 7208 invoked from network); 22 Oct 2008 18:34:31 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 22 Oct 2008 18:34:31 -0000 Received: from yw-out-2324.google.com (yw-out-2324.google.com [74.125.46.28]) by bifrost.dotsrc.org (Postfix) with ESMTP id 52FC380524C0 for ; Wed, 22 Oct 2008 20:34:27 +0200 (CEST) Received: by yw-out-2324.google.com with SMTP id 5so581421ywb.81 for ; Wed, 22 Oct 2008 11:34:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=pNg2cHz5KAJsf/ZxA1a5mheRHNDUs89p9oDnbYFzN1U=; b=JYs6G4afNqTajbQlHogyxi9H/G34jIfC6SZ/FP0mTt3uuH3TaxKx1CE9T1K04RpTXS CYRl6Rr6VuieZoA3LZOXoLg6V/gLYMa67Q6pj9B0Vg6MoD8l0agpDvQtO/C2Itik4m0s LbZlvF/p6mgWuGwxyBug9AqC4l6/GY7T+lDPc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=v/tIgkz8BNFkU1i7vLHjlagT/exqQMQw2a7RzbzZVWNI8xge3TA19Loqruu35t6dfM OakkMI2Cd+fUQSsN/DnjndwPgjWiEcj61LYc+kV0JYTetLu8dM9OBPKhrnfHcW5Tq0yo ZaLEo8A1MhEV4fg5sUAUJtHvCN/zd03/6XqrY= Received: by 10.65.103.14 with SMTP id f14mr8805226qbm.30.1224700466152; Wed, 22 Oct 2008 11:34:26 -0700 (PDT) Received: by 10.64.91.18 with HTTP; Wed, 22 Oct 2008 11:34:26 -0700 (PDT) Message-ID: <6a42eec70810221134n9358e20u1bdb272a4bfc6291@mail.gmail.com> Date: Wed, 22 Oct 2008 11:34:26 -0700 From: "sam reckoner" To: zsh-users@sunsite.dk Subject: repeat indefinitely? MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: ClamAV 0.92.1/8470/Wed Oct 22 17:13:42 2008 on bifrost X-Virus-Status: Clean instead of: % repeat 1000;do; something; done is it possible to do % repeat Infinity; do ; something; done and then kill it with Ctrl+C or something? thanks.