Contents | < Browse | Browse >
The standard redirection operators are supported for all internal
commands, as well as disk based programs. (Redirection only affects
those programs which use the dos.library's Input() and Output()
functions.)
> redirect std output.
< redirect std input.
>> append redirect output. (tacks output onto the end of file)
<> redirect input and output.
>M view output after the command has ended with MORE ,
you need a review-buffer for that which is big enough,
otherwise some of the output will be swallowed.
eg. dir >ram:directory df0:c
type zshell.doc <raw:0/0/100/100/input >raw:0/0/640/100/output
sortfile things >>df0:things.log
list >m df0: {view output with more}
copy > df0: ram: {redirects to NIL: !}