diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-21 23:27:30 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-21 23:27:30 +0000 |
commit | 1359da6ac7f7f44f82d224e61cc2c6ecb58baeef (patch) | |
tree | 0fce9fa95cef2293e24a5626a88b60c59b11a865 /shell/README | |
parent | 762d35c75fe7001847adf85b5cf8279d53f627d7 (diff) | |
download | busybox-w32-1359da6ac7f7f44f82d224e61cc2c6ecb58baeef.tar.gz busybox-w32-1359da6ac7f7f44f82d224e61cc2c6ecb58baeef.tar.bz2 busybox-w32-1359da6ac7f7f44f82d224e61cc2c6ecb58baeef.zip |
hush: make Ctrl-Z work (at least sometimes)
Diffstat (limited to 'shell/README')
-rw-r--r-- | shell/README | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/shell/README b/shell/README index b78d651a5..2b1d05ceb 100644 --- a/shell/README +++ b/shell/README | |||
@@ -1,6 +1,11 @@ | |||
1 | Various bits of what is known about busybox shells, in no particular order. | 1 | Various bits of what is known about busybox shells, in no particular order. |
2 | 2 | ||
3 | 2007-04-21 | 3 | 2007-04-21 |
4 | hush: "sleep 5 | sleep 6" + Ctrl-Z + fg seems to work. | ||
5 | "rm -i" + Ctrl-C, "sleep 5" + Ctrl-Z still doesn't work | ||
6 | for SH_STANDALONE case :( | ||
7 | |||
8 | 2007-04-21 | ||
4 | hush: fixed non-backgrounding of "sleep 1 &" and totally broken | 9 | hush: fixed non-backgrounding of "sleep 1 &" and totally broken |
5 | "sleep 1 | sleep 2 &". Noticed a bug where successive jobs | 10 | "sleep 1 | sleep 2 &". Noticed a bug where successive jobs |
6 | get numbers 1,2,3 even when job #1 has exited before job# 2 is started. | 11 | get numbers 1,2,3 even when job #1 has exited before job# 2 is started. |