aboutsummaryrefslogtreecommitdiff
path: root/shell/README
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-05-06 14:15:42 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-05-06 14:15:42 +0000
commita7be2b029291ab2c419d425406024167eb700990 (patch)
tree347ba6d74433880a93084613329f2bf1baf0839b /shell/README
parenta28bd4d7ca3e09a560e6481922451611f7a4c6cb (diff)
downloadbusybox-w32-a7be2b029291ab2c419d425406024167eb700990.tar.gz
busybox-w32-a7be2b029291ab2c419d425406024167eb700990.tar.bz2
busybox-w32-a7be2b029291ab2c419d425406024167eb700990.zip
hush: fix double-free in "echo TEST &"
git-svn-id: svn://busybox.net/trunk/busybox@18566 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell/README')
-rw-r--r--shell/README19
1 files changed, 18 insertions, 1 deletions
diff --git a/shell/README b/shell/README
index 284c69145..d492671fb 100644
--- a/shell/README
+++ b/shell/README
@@ -1,7 +1,24 @@
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
32006-05-06
4hush: more bugs spotted. Comparison with bash:
5bash-3.2# echo "TEST`date;echo;echo`BEST"
6TESTSun May 6 09:21:05 CEST 2007BEST [we dont strip eols]
7bash-3.2# echo "TEST`echo '$(echo ZZ)'`BEST"
8TEST$(echo ZZ)BEST [we execute inner echo]
9bash-3.2# echo "TEST`echo "'"`BEST"
10TEST'BEST [we totally mess up this one]
11bash-3.2# echo `sleep 5`
12[Ctrl-C should work, Ctrl-Z should do nothing][we totally mess up this one]
13bash-3.2# if true; then
14> [Ctrl-C]
15bash-3.2# [we re-issue "> "]
16bash-3.2# if echo `sleep 5`; then
17> true; fi [we execute sleep before "> "]
18
32007-05-04 192007-05-04
4hush: make ctrl-Z/C work correctly for "while true; do true; done" 20hush: made ctrl-Z/C work correctly for "while true; do true; done"
21(namely, it backgrounds/interrupts entire "while")
5 22
62007-05-03 232007-05-03
7hush: new bug spotted: Ctrl-C on "while true; do true; done" doesn't 24hush: new bug spotted: Ctrl-C on "while true; do true; done" doesn't