aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2010-01-27 14:11:42 +1000
committerSteve Bennett <steveb@workware.net.au>2010-10-15 11:02:46 +1000
commit88694720353f9c0ad65f8e2ce31d5e1b645474d6 (patch)
tree7507948ca4cff46dad44d75e8e3ce39b59c7f31f /doc
parent82fcf63727049e8b97238ca8e419d3ea96d304a0 (diff)
downloadjimtcl-88694720353f9c0ad65f8e2ce31d5e1b645474d6.zip
jimtcl-88694720353f9c0ad65f8e2ce31d5e1b645474d6.tar.gz
jimtcl-88694720353f9c0ad65f8e2ce31d5e1b645474d6.tar.bz2
Add exec support for 2>@1
See TIP #202: http://www.tcl.tk/cgi-bin/tct/tip/202.html
Diffstat (limited to 'doc')
-rw-r--r--doc/jim_tcl.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/jim_tcl.txt b/doc/jim_tcl.txt
index fa900f9..281817b 100644
--- a/doc/jim_tcl.txt
+++ b/doc/jim_tcl.txt
@@ -60,7 +60,7 @@ CHANGES
-------
Since v0.61:
-1. Add support to 'exec' for '>&', '>>&', '|&'
+1. Add support to 'exec' for '>&', '>>&', '|&', '2>@1'
2. Fix 'exec' error messages when special token (e.g. '>') is the last token
3. Fix 'subst' handling of backslash escapes.
4. Allow abbreviated options for 'subst'
@@ -1760,6 +1760,10 @@ An *arg* may have one of the following special forms:
The standard error of the last command in the pipeline is
redirected to the given (writable) file descriptor.
++2>@1+::
+ The standard error of the last command in the pipeline is
+ redirected to the same file descriptor as the standard output.
+
+>&filename+::
Both the standard output and standard error of the last command
in the pipeline is redirected to the file.