aboutsummaryrefslogtreecommitdiff
path: root/shell/README
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-21 13:42:52 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-21 13:42:52 +0000
commitfc3ae83cd4e9049adb47ebfbd80ce3931a186ab5 (patch)
tree06b88f81bb62ecdc2850705c1845ba9a963cc09b /shell/README
parent8e9f2a1033ed906625ed0b795bf29f2506092397 (diff)
downloadbusybox-w32-fc3ae83cd4e9049adb47ebfbd80ce3931a186ab5.tar.gz
busybox-w32-fc3ae83cd4e9049adb47ebfbd80ce3931a186ab5.tar.bz2
busybox-w32-fc3ae83cd4e9049adb47ebfbd80ce3931a186ab5.zip
hush: fix more backgrounding bugs. Plenty of them remains still.
git-svn-id: svn://busybox.net/trunk/busybox@18508 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell/README')
-rw-r--r--shell/README8
1 files changed, 7 insertions, 1 deletions
diff --git a/shell/README b/shell/README
index bcd84dcad..b78d651a5 100644
--- a/shell/README
+++ b/shell/README
@@ -1,6 +1,12 @@
1Various bits of what is known about busybox shells, in no particular order. 1Various bits of what is known about busybox shells, in no particular order.
2 2
32007-04-22 32007-04-21
4hush: fixed non-backgrounding of "sleep 1 &" and totally broken
5"sleep 1 | sleep 2 &". Noticed a bug where successive jobs
6get numbers 1,2,3 even when job #1 has exited before job# 2 is started.
7(bash reuses #1 in this case)
8
92007-04-21
4hush: "sleep 1 | exit 3; echo $?" prints 0 because $? is substituted 10hush: "sleep 1 | exit 3; echo $?" prints 0 because $? is substituted
5_before_ pipe gets executed!! run_list_real() already has "pipe;echo" 11_before_ pipe gets executed!! run_list_real() already has "pipe;echo"
6parsed and handed to it for execution, so it sees "pipe"; "echo 0". 12parsed and handed to it for execution, so it sees "pipe"; "echo 0".