aboutsummaryrefslogtreecommitdiff
path: root/shell/README
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-21 10:01:14 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-21 10:01:14 +0000
commit8e9f2a1033ed906625ed0b795bf29f2506092397 (patch)
tree78c0e51c28c953f3493ae4cdb59928f14904dac6 /shell/README
parent82e7a2971d6c3d4872f0b17137c6a69dc32a5eb7 (diff)
downloadbusybox-w32-8e9f2a1033ed906625ed0b795bf29f2506092397.tar.gz
busybox-w32-8e9f2a1033ed906625ed0b795bf29f2506092397.tar.bz2
busybox-w32-8e9f2a1033ed906625ed0b795bf29f2506092397.zip
hush: explain why "pipe; exit $?" doesn't show correct exitcode
git-svn-id: svn://busybox.net/trunk/busybox@18507 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell/README')
-rw-r--r--shell/README5
1 files changed, 5 insertions, 0 deletions
diff --git a/shell/README b/shell/README
index 32ad67380..bcd84dcad 100644
--- a/shell/README
+++ b/shell/README
@@ -1,5 +1,10 @@
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
4hush: "sleep 1 | exit 3; echo $?" prints 0 because $? is substituted
5_before_ pipe gets executed!! run_list_real() already has "pipe;echo"
6parsed and handed to it for execution, so it sees "pipe"; "echo 0".
7
32007-04-21 82007-04-21
4hush: removed setsid() and made job control sort-of-sometimes-work. 9hush: removed setsid() and made job control sort-of-sometimes-work.
5Ctrl-C in "rm -i" works now except for SH_STANDALONE case. 10Ctrl-C in "rm -i" works now except for SH_STANDALONE case.