From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14305 invoked by alias); 27 Oct 2013 15:09:54 -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: 18060 Received: (qmail 13727 invoked from network); 27 Oct 2013 15:09:38 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.2 Date: Sun, 27 Oct 2013 22:59:17 +0800 From: Han Pingtian To: zsh-users@zsh.org Subject: multios doesn't work with 2>&1 Message-ID: <20131027145917.GA5509@localhost.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.5.21 (2010-09-15) X-TM-AS-MML: No X-Content-Scanned: Fidelis XPS MAILER x-cbid: 13102714-0320-0000-0000-000001871C15 Hello, According to the zsh guide's "2.5.8 ‘Go faster’ options for power users", page 44: % echo foo 2>&1 >/dev/null | sed 's/foo/bar/' should output "bar" if multios has been set. But it outputs nothing here. But if I removed the "2>&1", then it works just fine: % echo foo >/dev/null | sed 's/foo/bar/' bar Please have a look. Thanks.