From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24245 invoked from network); 29 Dec 1996 03:32:05 -0000 Received: from euclid.skiles.gatech.edu (list@130.207.146.50) by coral.primenet.com.au with SMTP; 29 Dec 1996 03:32:05 -0000 Received: (from list@localhost) by euclid.skiles.gatech.edu (8.7.3/8.7.3) id WAA10460; Sat, 28 Dec 1996 22:25:24 -0500 (EST) Resent-Date: Sat, 28 Dec 1996 22:25:24 -0500 (EST) From: Yamamoto Hirotaka Date: Sun, 29 Dec 1996 12:28:22 +0900 Message-Id: <199612290328.MAA00797@verdy.is.s.u-tokyo.ac.jp> To: zsh-workers@math.gatech.edu Subject: bug in select Reply-to: ymmt@camille.is.s.u-tokyo.ac.jp Resent-Message-ID: <"WNTG42.0.KZ2.ZIUno"@euclid> Resent-From: zsh-workers@math.gatech.edu X-Mailing-List: archive/latest/2662 X-Loop: zsh-workers@math.gatech.edu Precedence: list Resent-Sender: zsh-workers-request@math.gatech.edu Hi, I found a buggy feature in zsh's `select' built-in command. here's the log. verdy% select i in aaa bbb ccc do echo $i done 1) aaa 2) bbb 3) ccc ?# 1 0 1) aaa 2) bbb 3) ccc ?# 2 0 1) aaa 2) bbb 3) ccc ?# 3 0 1) aaa 2) bbb 3) ccc ?# 0 0 1) aaa 2) bbb 3) ccc ?# aaa 0 1) aaa 2) bbb 3) ccc with zsh version 3.1.0, Linux-2.0.27 (Slakware-3.1) ps) I cannot understand the usage of `&|' and `&!'. could someone help me?