Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
time for loop
- X-seq: zsh-users 23792
- From: Peng Yu <pengyu.ut@xxxxxxxxx>
- To: zsh-users <zsh-users@xxxxxxx>
- Subject: time for loop
- Date: Mon, 3 Dec 2018 10:05:35 -0600
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=v/jdwu55EtY6qk3fLboQoDOOAXx5uo+XTm1w2RUSOYc=; b=IXwLbjHV80iJxRmcVjLOb0OEHsm5HaN3/in/XbiyKsHFbfEEZI9vBoHlFimXxTfMqx bEJE2mYq6rtdEySnwgohqNAcgZYOZ5fJ98aqziKR3ikJwSZ3GLYPvIYbJqZ90/GhhpSR Nx1B0btQXTZsrrsObf9Jq5ntct1iVzqSP/SwcFJKQruFhmTdoKpNHk00TEc5YaBXrjZh iPoYSWzj0rWL1yvXBv0vOZo76KO7lkrKFrPscTU3uK8yCIqSRERKLz5X6/lm5OL2ioKI uwvdJJocOvfx54DaqLE4HGGqsqzeRNUSn3xbvKA5DkBllTuBLDx9SZbPZrbcSzfClOvM xn0A==
- List-help: <mailto:zsh-users-help@zsh.org>
- List-id: Zsh Users List <zsh-users.zsh.org>
- List-post: <mailto:zsh-users@zsh.org>
- List-unsubscribe: <mailto:zsh-users-unsubscribe@zsh.org>
- Mailing-list: contact zsh-users-help@xxxxxxx; run by ezmlm
Hi,
The following code print nothing in zsh. But it can print the time in bash.
time for ((i=0;i<1000;++i))
do
:
done
The zsh manual says it only support pipeline. Is it better to allow it
support for-loop or other groups of code?
--
Regards,
Peng
Messages sorted by:
Reverse Date,
Date,
Thread,
Author