aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_doc.txt
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-07-28 00:06:02 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-07-28 00:06:02 +0000
commit38c89210d6b7ffdd4e1c67686559b8b4c33611c7 (patch)
tree99e26031bd8c817f8b9f8456355837819c0f2a42 /shell/hush_doc.txt
parentbe709c24d40c2fb52d3f57faa25b9134c7d25270 (diff)
downloadbusybox-38c89210d6b7ffdd4e1c67686559b8b4c33611c7.tar.gz
documentation fix
Diffstat (limited to 'shell/hush_doc.txt')
-rw-r--r--shell/hush_doc.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/hush_doc.txt b/shell/hush_doc.txt
index b2fd24426..39f7dcee5 100644
--- a/shell/hush_doc.txt
+++ b/shell/hush_doc.txt
@@ -24,7 +24,7 @@ res_word controls statement execution. Examples:
"echo Hello" -
pipe 0 res_word=NONE followup=SEQ prog[0] 'echo' 'Hello'
-pipe 1 res_word=NONE followup=1 SEQ
+pipe 1 res_word=NONE followup=SEQ
"echo foo || echo bar" -
pipe 0 res_word=NONE followup=OR prog[0] 'echo' 'foo'
@@ -51,7 +51,7 @@ pipe 0 res_word=NONE followup=SEQ
pipe 1 res_word=NONE followup=SEQ prog[0] 'true'
pipe 2 res_word=NONE followup=SEQ
pipe 2 res_word=NONE followup=(null)
-pipe 1 res_word=NONE followup=1 SEQ
+pipe 1 res_word=NONE followup=SEQ
"for v in a b; do echo $v; true; done" -
pipe 0 res_word=NONE followup=SEQ
@@ -92,7 +92,7 @@ pipe 0 res_word=NONE followup=1 SEQ
pipe 5 res_word=CASEI followup=SEQ prog[0] 'cmd3'
pipe 6 res_word=ESAC followup=SEQ
pipe 7 res_word=NONE followup=(null)
-pipe 1 res_word=NONE followup=1 SEQ
+pipe 1 res_word=NONE followup=SEQ
2008-01