From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4741 invoked by alias); 9 Aug 2015 00:15:22 -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: 20397 Received: (qmail 27710 invoked from network); 9 Aug 2015 00:15:20 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL autolearn=ham autolearn_force=no version=3.4.0 X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:message-id:date:in-reply-to:comments :references:to:subject:mime-version:content-type; bh=HOE7mW3pEII5gc7CJDNfmVnpD7fxyWIhYno112FVjRY=; b=EMcfR5FG8KITr9d4sb5ONBWR5db1t91AOHAkF7abUV+PYA+lTiVnqdRVL0p9eOVUc7 9GyBReeqJ/Ub0P4yK+kORGb56VgOCK3FHMaCgJcSpZNjWSYN3u8BL3zD/rmYbBlKE0i+ Oh8DZqspuzoU8yi1MwLk3COsRxhu8WsR7iBHjZy/JjXGfbQAbhOE6ANeYsRrb5SDu5tK KRFouTCJtMep+EmBOZ2TOsoaG48mnlSHF3P7aAnn4eErt6/D5Pk0sWTkZ1FCdP9SwwhC k9en/kGjqVkjskCQ4ihxi4h8X3KbWNT28krNOHTlbgDihHRuTSkLw20riotcbCNIEbid xImg== X-Gm-Message-State: ALoCoQl6uVaPAAbOiQQ+w8W0Bpw72qU9qMzzYdBPzF65w7kmFmlxB+OQFdMRbcoII8dGULmC4OzI X-Received: by 10.202.89.194 with SMTP id n185mr12670309oib.46.1439079316704; Sat, 08 Aug 2015 17:15:16 -0700 (PDT) From: Bart Schaefer Message-Id: <150808171513.ZM14057@torch.brasslantern.com> Date: Sat, 8 Aug 2015 17:15:13 -0700 In-Reply-To: Comments: In reply to "Jun T." "Re: zmv, case insensivity and possible the lack of coffee" (Aug 8, 8:01pm) References: <20150808054333.GC4378@solfire> X-Mailer: OpenZMail Classic (0.9.2 24April2005) To: zsh-users@zsh.org Subject: Re: zmv, case insensivity and possible the lack of coffee MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On Aug 8, 8:01pm, Jun T. wrote: } } Try putting 'set +e' at the beginning of the script: } If this works, then I suspect you have 'set -e' (or 'setopt errexit') Further, joining them with && would also have the effect of stopping as soon as any of them failed (exited nonzero). So I think "set +e" is the most likely solution.