aboutsummaryrefslogtreecommitdiff
path: root/shell/README
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-05-04 13:07:27 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-05-04 13:07:27 +0000
commit1bb1aa1bd8b4c95091fe74d791d3c3cde74effe1 (patch)
treeb3217aa77c02461415d67bed96d3599d96b796b4 /shell/README
parent20507d4637f0c80737317f2081cb8360a2d14e05 (diff)
downloadbusybox-w32-1bb1aa1bd8b4c95091fe74d791d3c3cde74effe1.tar.gz
busybox-w32-1bb1aa1bd8b4c95091fe74d791d3c3cde74effe1.tar.bz2
busybox-w32-1bb1aa1bd8b4c95091fe74d791d3c3cde74effe1.zip
hush: add parse tree debug print
git-svn-id: svn://busybox.net/trunk/busybox@18555 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell/README')
-rw-r--r--shell/README4
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/README b/shell/README
index 989587a4f..c3e7132ce 100644
--- a/shell/README
+++ b/shell/README
@@ -1,6 +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-05-03 32007-05-03
4hush: new bug spotted: Ctrl-C on "while true; do true; done" kills shell,
5not just the loop.
6
72007-05-03
4hush: update on "sleep 1 | exit 3; echo $?" bug. 8hush: update on "sleep 1 | exit 3; echo $?" bug.
5parse_stream_outer() repeatedly calls parse_stream(). 9parse_stream_outer() repeatedly calls parse_stream().
6parse_stream() is now fixed to stop on ';' in this example, 10parse_stream() is now fixed to stop on ';' in this example,