From mboxrd@z Thu Jan 1 00:00:00 1970 Received: by archone.tamu.edu id <22531>; Mon, 19 Aug 1991 12:55:06 -0500 From: Byron Rakitzis To: rc Subject: apid as a list Message-Id: <91Aug19.125506cdt.22531@archone.tamu.edu> Date: Mon, 19 Aug 1991 12:54:58 -0500 It's been suggested that $apid should be a list of all backgrounded jobs, and that as soon as rc's wait builtin receives the exit status of an exiting child, the appropriate $apid list entry should be removed. I have certainly noticed myself writing code like: foo & apids=$apid bar & apids=($apid $apids) ... kill $apids I will probably implement this in a trial fashion, and ignore it if it is too much work, but it doesn't look like it would be too hard. Any comments?