From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13554 invoked by alias); 7 Nov 2015 09:40:33 -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: 20912 Received: (qmail 7897 invoked from network); 7 Nov 2015 09:40:32 -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=-1.9 required=5.0 tests=BAYES_00,T_DKIM_INVALID autolearn=ham autolearn_force=no version=3.4.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=brasslantern_com.20150623.gappssmtp.com; s=20150623; h=from:message-id:date:in-reply-to:comments:references:to:subject :mime-version:content-type; bh=RYpze5brG56sk7WAOw3sIkmyBTgD0pYlecXo12Ortts=; b=OKPq/rWPGVgNX2xAp/81cCpiA6GSJFRMEbHbo8tpcGzK1vlEG7ML1Yppqv7eMM2pws ZUmkJGVGtWrDoyARBH7YgKVCL0R8HEh9I4ywCP7pL3T/Yfo/3DcyBnu523w09BY682pE YQ35HUBM15Gmqb7ET29VwS/p/L8Ohgu8Sh1VASGwY6prn0gLEPmI/+m8CofK5SAJJx98 YXLQ/Cwqsv2JpP0kBKVTCEl+yKj7XCEEKe9ZDBTOwbgDwKvXHncBsK+yKFVD8Vn5ayW/ bNffenaN60E4OE2964nPbfb7JEGTE9WCT4CUHrhMvLzUI1qHOKxbr4RPszvCiN0gbG/6 6IcA== 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=RYpze5brG56sk7WAOw3sIkmyBTgD0pYlecXo12Ortts=; b=CwFCYxBWszT5vVvujg+6Anut7PSMp287fe/oNshnnz2jyuWvgCvEGywHorGr52F0vl LdJ/AjngNK75zr65atyuY8698Cs5k4kLmtPIKOK/+MlfrWP8y1K04j7LSA+7KS/sGrWE AX7oNQM3i1tw+7eQZhl4k5hG2ZWQvAbSl06+ghXxI4bUBHT9gxRPHxkja+MfKgAIJd0a VeCNcJt/rBLHLZer603JrenljnqxiwdIYIsZFTgkOPERhxLE45cs1znmtB+fqILgtVs1 wga2KLIg8R1R8ADMTcHWnay9LmHJsCeyEjs8Hs9+RUdgTD/xP9m817phIVm3aCrRk+Mi 7fzQ== X-Gm-Message-State: ALoCoQmaeTmzyZ943woomQ+sT9/MuUv3h5P6mxPI5S6qbmosZy0Z7RG9kkzlFZa7HU8KVXUtQu9p X-Received: by 10.60.69.65 with SMTP id c1mr10729375oeu.38.1446889230438; Sat, 07 Nov 2015 01:40:30 -0800 (PST) From: Bart Schaefer Message-Id: <151107014027.ZM23352@torch.brasslantern.com> Date: Sat, 7 Nov 2015 01:40:27 -0800 In-Reply-To: <151107013244.ZM23334@torch.brasslantern.com> Comments: In reply to Bart Schaefer "Re: convolutions" (Nov 7, 1:32am) References: <563D5ED5.1070102@eastlink.ca> <563D9B54.9010604@eastlink.ca> <151107013244.ZM23334@torch.brasslantern.com> X-Mailer: OpenZMail Classic (0.9.2 24April2005) To: Zsh Users Subject: Re: convolutions MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On Nov 7, 1:32am, Bart Schaefer wrote: } } -- and you don't even need it there in this case: } } torch% test2 () } { } echo "$(eval echo "$(cat junk1)")" >! junk2 } cat junk2 } } Although, to be clear, the above isn't really correct either, because the "eval" is going to remove the quotes around the contents of junk1, so you can end up actually executing parts of junk1 as code, as Mikael pointed out.