Mercurial > python-cmd2
diff docs/freefeatures.rst @ 324:21584174d865
make SHOW TABLES work
author | catherine@dellzilla |
---|---|
date | Thu, 11 Feb 2010 16:07:24 -0500 |
parents | a08c50b7d3d3 |
children | 4172feeddf76 |
line wrap: on
line diff
--- a/docs/freefeatures.rst Thu Feb 11 14:46:50 2010 -0500 +++ b/docs/freefeatures.rst Thu Feb 11 16:07:24 2010 -0500 @@ -15,6 +15,22 @@ Output redirection ================== +As in a Unix shell, output of a command can be redirected: + + - sent to a file with ``>``, as in ``mycommand args > filename.txt`` + - piped (``|``) as input to operating-system commands, as in + ``mycommand args | wc`` + - sent to the paste buffer, ready for the next Copy operation, by + ending with a bare ``>``, as in ``mycommand args >``.. Redirecting + to paste buffer requires software to be installed on the operating + system, pywin32_ on Windows or xclip_ on *nix. + +.. _pywin32:: http://sourceforge.net/projects/pywin32/ +.. _xclip:: http://www.cyberciti.biz/faq/xclip-linux-insert-files-command-output-intoclipboard/ + + +operating-system programs, like + Commands at start =================