diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2020-05-22 15:32:31 +0300 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2020-05-27 08:38:57 +0200 |
commit | b0b048c03930b826ab3dbf88b56fd664fca26886 (patch) | |
tree | d6e5e89fb40a31136f6d3e870e59c23f14b70631 /doc | |
parent | b27f36b7af5186ad66fd1afa6e7fdc742f2aa1bd (diff) |
Add script command redirect aliases
Diffstat (limited to 'doc')
-rw-r--r-- | doc/testscript.cli | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/doc/testscript.cli b/doc/testscript.cli index 6b47dad..665446e 100644 --- a/doc/testscript.cli +++ b/doc/testscript.cli @@ -545,7 +545,7 @@ complete picture: \ $* 'World' >'Hello, World!' : command-name -$* 'John' 'Jane' >EOO : command-names +$* 'John' 'Jane' >>EOO : command-names Hello, Jane! Hello, John! EOO @@ -1536,9 +1536,9 @@ stderr: '2'(out-redirect) in-redirect: '<-'|\ '<|'|\ - '<'{':'?'/'?} <text>|\ - '<<'{':'?'/'?} <here-end>|\ - '<<<' <file> + ('<='|'<<<') <file>|\ + ('<<='|'<<'){':'?'/'?} <here-end>|\ + ('<<<='|'<'){':'?'/'?} <text> out-redirect: '>-'|\ '>|'|\ @@ -1546,9 +1546,9 @@ out-redirect: '>-'|\ '>=' <file>|\ '>+' <file>|\ '>&' ('1'|'2')|\ - '>'{':'?'/'?}'~'? <text>|\ - '>>'{':'?'/'?}'~'? <here-end>|\ - '>>>' <file> + ('>?'|'>>>') <file>|\ + ('>>?'|'>>'){':'?'/'?}'~'? <here-end>|\ + ('>>>?'|'>'){':'?'/'?}'~'? <text> here-document: *<text> @@ -1866,9 +1866,9 @@ $* a1>- \ in-redirect: '<-'|\ '<|'|\ - '<'{':'?'/'?} <text>|\ - '<<'{':'?'/'?} <here-end>|\ - '<<<' <file> + ('<='|'<<<') <file>|\ + ('<<='|'<<'){':'?'/'?} <here-end>|\ + ('<<<='|'<'){':'?'/'?} <text> \ The \c{stdin} data can come from a pipe, here-string (\c{<}), here-document @@ -1905,9 +1905,9 @@ out-redirect: '>-'|\ '>=' <file>|\ '>+' <file>|\ '>&' ('1'|'2')|\ - '>'{':'?'/'?}'~'? <text>|\ - '>>'{':'?'/'?}'~'? <here-end>|\ - '>>>' <file> + ('>?'|'>>>') <file>|\ + ('>>?'|'>>'){':'?'/'?}'~'? <here-end>|\ + ('>>>?'|'>'){':'?'/'?}'~'? <text> \ The \c{stdout} and \c{stderr} data can go to a pipe (\c{stdout} only), file |