From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <123bc1dba535ca3e7d2f26bb6bee4ff9@acl.lanl.gov> To: 9fans@cse.psu.edu From: andrey mirtchovski MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: [9fans] bug or a feature? Date: Tue, 11 Jun 2002 09:14:31 -0600 Topicbox-Message-UUID: a9819300-eaca-11e9-9e20-41e7f4b1d025 shouldn't rc return an empty list if the glob matching does not succeed? currently it returns the actual string it attempted to glob, as in: p9% for(i in /dev/sd??) echo $i /dev/sdC0 /dev/sdD0 p9% for(i in /dev/sd?) echo $i /dev/sd? p9% this causes cpurc to fail on diskless machines. proposed behaviour: p9% for(i in /dev/sd??) echo $i /dev/sdC0 /dev/sdD0 p9% for(i in /dev/sd?) echo $i p9% for(i in '/dev/sd?') echo $i /dev/sd? p9%