Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Odd behavior using MULTIOS
- X-seq: zsh-users 26147
- From: Clinton Bunch <cdb_zsh@xxxxxxxxxxx>
- To: zsh-users@xxxxxxx
- Subject: Odd behavior using MULTIOS
- Date: Wed, 11 Nov 2020 10:25:29 -0600
- Archived-at: <https://zsh.org/users/26147>
- Archived-at: <http://www.zsh.org/sympa/arcsearch_id/zsh-users/2020-11/02c5fda1-c1ab-d0a0-9350-a5b122cd1394%40zentaur.org>
- Authentication-results: zsh.org; iprev=pass (iris.zentaur.org) smtp.remote-ip=198.58.127.206; dkim=pass header.d=zentaur.org header.s=dkim20200120 header.a=rsa-sha256; dmarc=pass header.from=zentaur.org; arc=none
- Authentication-results: iris.zentaur.org (amavisd-new); dkim=pass (2048-bit key) reason="pass (just generated, assumed good)" header.d=zentaur.org
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zentaur.org; h= content-transfer-encoding:content-language:content-type :content-type:mime-version:user-agent:date:date:message-id :subject:subject:from:from:to; s=dkim20200120; t=1605111930; x= 1605115531; bh=cGarUKPn2polfvPD5VtII0f/2u2yRHiTPkBgIlCHPJ8=; b=e hVjk553nGjhpv1UIHXfE3Eii0iRxKGFolus1o1w4B2yeVvka6Ga6pk1t67qV0hO8 ERwSpSc5b9gpYQZ9k753NMHW0ul43bc9T0aBy/oysjI21fg1zwU53tGciSwbtg0U s8k1LdFQ9w0QcDy0jLKI5Ih5xcTh3sfQO3PHfTu/gwaLYm9Ng/0afLBiyUJBTgsO RuAyp46vyNt4s18nGbDbnpzvn3dH3GrpHzPeDFX7IHMcNjfaevqYbv5DQS7zMMrk FvyCcDhEtN7slFemT7+zTM4k5YklNSFGrupuPe4c+M7cf8AmRUdluy8IQBL2CqHX +vPfjQYMR2YnEC2xmReKw==
- List-archive: <http://www.zsh.org/sympa/arc/zsh-users>
- List-help: <mailto:sympa@zsh.org?subject=help>
- List-id: <zsh-users.zsh.org>
- List-owner: <mailto:zsh-users-request@zsh.org>
- List-post: <mailto:zsh-users@zsh.org>
- List-subscribe: <mailto:sympa@zsh.org?subject=subscribe%20zsh-users>
- List-unsubscribe: <mailto:sympa@zsh.org?subject=unsubscribe%20zsh-users>
- Sender: zsh-users-request@xxxxxxx
Is this the expected behavior?
% cat /etc/system-release
CentOS Linux release 8.2.2004 (Core)
% uname -a
Linux cdblinux.cfhp.com 4.18.0-193.14.2.el8_2.x86_64 #1 SMP Sun Jul 26
03:54:29 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
% echo $ZSH_VERSION
5.5.1
% cat test.zsh
#!/bin/zsh
setopt MULTIOS
{
print -u3 "Testing"
print "Second Testing"
} 3>&1 3>/tmp/test
% zsh test.zsh
Second Testing
Testing
% cat /tmp/test
Testing
%
Messages sorted by:
Reverse Date,
Date,
Thread,
Author