From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3944 invoked by alias); 16 Feb 2016 10:11:28 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 37995 Received: (qmail 11445 invoked from network); 16 Feb 2016 10:11:27 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM, T_DKIM_INVALID autolearn=ham autolearn_force=no version=3.4.1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=RqQ4zeIa5HzYzZL47Lu+x7Qt/yOYSmIuhd2X94CgKBI=; b=0vltDlK5UIevemdTGJcPpJ9+mBQghP38Dr0eiUgy0Es70HZokJlaCsBblRcPSL0GFW mr/vLiqmJ5MCQPGCZssDZdrUWj+yTNN8o1KnQCOY7OLlqsz90kozz7BitYlzwQv7YlsB ln1pF6yo2IrGN9QzDgQCmtHmb87pMYcX7q4xUY77A1D7JTjidj6DEIgVFKMQqog538dP EmRsUKcLcX2FD4RunTH2eMc740LngnyWOF64ceWVu94b41DPh/T7vCTBUQEqjehEF/bv 81eSlBore8RutB0gb2XDbfQcZ4VqS1ZtyPRgz3EU4IbKeZSeuqGCTTfnavJdDC2Mqb4U wvAg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-type; bh=RqQ4zeIa5HzYzZL47Lu+x7Qt/yOYSmIuhd2X94CgKBI=; b=eQSLCeK9+cJrmzsbDGI75mARPxGxq3ssOHleKUV8KKrgcHDhXeBL783blk6wykLdT8 S8q903HgwMd8zjAGsih7HF4nnU9q/NE6lTfMtmHXTA5VlTZsGHH7321hyR2Ne+IidtCP F58PFdK2zlL+1cW7xno6mxALMJ2gwgSlT/mO01JFf3S465RpudMwZ1Jv3DOkBC6vttsy gTI2nWcKY+chxxWiW2xj9QhNG9/ksXsx/kLS536J1y7FrCHRhvIlWzkp5GFd+HnY6lY1 W1yOvwm3StWBR3j5hjwt8GBfbfX9hGnHJHpiV3MlvUoRpCVyjHzuUG9SvCNSzk3RzmcT FbmQ== X-Gm-Message-State: AG10YOR27NENJEygKhXOhfAlmycWsT48HaDHk1mnCVKjXyEBhInfEj9bSQQp3yJmlS+zbeF3IxjviQ4fFD2dtw== X-Received: by 10.25.23.24 with SMTP id n24mr9314902lfi.66.1455617483418; Tue, 16 Feb 2016 02:11:23 -0800 (PST) MIME-Version: 1.0 In-Reply-To: <20160216093339.3d0f4d0a@pwslap01u.europe.root.pri> References: <20160216093339.3d0f4d0a@pwslap01u.europe.root.pri> From: Sebastian Gniazdowski Date: Tue, 16 Feb 2016 11:11:04 +0100 Message-ID: Subject: Re: Quoting problems To: Peter Stephenson Cc: Zsh hackers list Content-Type: text/plain; charset=UTF-8 On 16 February 2016 at 10:33, Peter Stephenson wrote: > Looking at your code, I think you'll find this is because you're using > echo without the option not to expand bacslashes. Try "echo -E" or > "print -r". (I'd recommend "print" if this is zsh-specific as echo > is mostly there for backward compatibility, although there's no reason > it shouldn't work here.) Thanks this helps. As for the echo, I go towards habit of using it only for debug messages, still forget this sometimes Best regards, Sebastian Gniazdowski