aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_doc.txt
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush_doc.txt')
-rw-r--r--shell/hush_doc.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/hush_doc.txt b/shell/hush_doc.txt
index a3ead590c..973fe44c5 100644
--- a/shell/hush_doc.txt
+++ b/shell/hush_doc.txt
@@ -22,11 +22,11 @@ run_list(struct pipe *) - handles "cmd; cmd2 && cmd3", while/for/do loops
22 22
23/* callsite: run_list */ 23/* callsite: run_list */
24run_pipe - runs "cmd1 | cmd2 | cmd3 [&]" 24run_pipe - runs "cmd1 | cmd2 | cmd3 [&]"
25 run_list - used if only one cmd and it is of the form "{ cmd4; cmd5 && cmd6; }" 25 run_list - used if only one cmd and it is of the form "{cmds;}"
26 forks for every cmd if more than one cmd or if & is there 26 forks for every cmd if more than one cmd or if & is there
27 pseudo_exec - runs each "cmdN" (handles builtins etc) 27 pseudo_exec - runs each "cmdN" (handles builtins etc)
28 28
29/* callsite: run_pipe_real */ 29/* callsite: run_pipe */
30pseudo_exec - runs "cmd" (handles builtins etc) 30pseudo_exec - runs "cmd" (handles builtins etc)
31 exec - execs external programs 31 exec - execs external programs
32 run_list - used if cmdN is "(cmds)" or "{cmds;}" 32 run_list - used if cmdN is "(cmds)" or "{cmds;}"