1 | |
2 | Command Language <a class="group-link" href="chap-cmd-lang.html">cmd-lang</a> |
3 | |
4 | |
5 | [Commands] simple-command semicolon ; |
6 | [Conditional] case if dbracket [[ |
7 | true false colon : |
8 | bang ! and && or || |
9 | [Iteration] while until for for-expr-sh (( |
10 | [Control Flow] break continue return exit |
11 | [Grouping] sh-func sh-block { subshell ( |
12 | [Concurrency] pipe | X pipe-amp |& ampersand & |
13 | [Redirects] redir-file > >> >| < <> not impl: &> |
14 | redir-desc >& <& |
15 | here-doc << <<- <<< |
16 | [Other Command] dparen (( time X coproc X select |