From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.1 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_NONE autolearn=ham autolearn_force=no version=3.4.2 Received: from primenet.com.au (ns1.primenet.com.au [203.24.36.2]) by inbox.vuxu.org (OpenSMTPD) with ESMTP id 33aab59d for ; Thu, 28 Nov 2019 10:56:37 +0000 (UTC) Received: (qmail 22540 invoked by alias); 28 Nov 2019 10:56:28 -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: List-Unsubscribe: X-Seq: 24475 Received: (qmail 5844 invoked by uid 1010); 28 Nov 2019 10:56:28 -0000 X-Qmail-Scanner-Diagnostics: from aurora-borealis.phear.org by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.102.0/25642. spamassassin: 3.4.2. Clear:RC:0(94.242.205.164):SA:0(-2.0/5.0):. Processed in 2.936888 secs); 28 Nov 2019 10:56:28 -0000 X-Envelope-From: eiro@phear.org X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | Received-SPF: pass (ns1.primenet.com.au: SPF record at phear.org designates 94.242.205.164 as permitted sender) X-Virus-Scanned: amavisd-new at phear.org DKIM-Filter: OpenDKIM Filter v2.10.3 aurora-borealis.phear.org BBFD212BD2 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=phear.org; s=20180217; t=1574938542; bh=HHq91RGBGI3yqaU3pHyj2phgaWrlgvTShPyjd3Ueaew=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=s7a2lfT8BqjSfa6g2Q8Z/EoO5j4XFtJTzkT1Rcbkxo/Yxf1N/+WSZgfawk5ms1i1n KIcky0Qcj+X3QEg2rbTUC+p4nIUvMV+e9zA+PJK+Z3QlrntCpnDhJucyRWssJhF8uZ yiAf8t4vqTryjqzZL16xXTp8mg+0uNTnos1bJed3u/cYk8EQFn3lyoAEOkYYHu1R/f KT99c7vShRolGbKWqg2O+QEPkw6Hf+KjAn2WFVS2zM4Qwg3Lrs+zkoKioZqyVqNEaZ kr3w8vHQbWioDjxVbhIbya6MMRplPXbb85bR82rWZmUmFGRYTymFkzxy6OFK95E1yv BO+7A/xgFIK7g== Date: Thu, 28 Nov 2019 11:55:41 +0100 From: Marc Chantreux To: Perry Smith Cc: Zsh Users Subject: Re: (about quoting) Re: (0) works as a charm Message-ID: <20191128105541.GA32686@prometheus.u-strasbg.fr> References: <20191127130038.GA19354@prometheus.u-strasbg.fr> <7C08CB02-19E7-49BA-A511-3239B2ABD614@easesoftware.com> <20191127141820.GA22743@prometheus.u-strasbg.fr> <20191127161545.GA28917@prometheus.u-strasbg.fr> <73072ADC-23B3-4D77-B681-5208A8F6F99C@easesoftware.com> <20191127193322.GA4955@prometheus.u-strasbg.fr> <3FC964CB-7EB2-4F23-9013-574A69B0BE8E@easesoftware.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <3FC964CB-7EB2-4F23-9013-574A69B0BE8E@easesoftware.com> User-Agent: Mutt/1.10.1 (2018-07-13) > > so > > x='\0' > > print $x > > x=$'\0' > > print $x > > looks the same > AH!! So… testing with “print” (without -r) has pitfalls… not really pitfalls as the default behaviour probably works the way we expect most of the time. > I had no idea print was interpreting things on output… not "on ouput" but "before releasing on the ouput" but yes: i missed that point too. regards marc