These commands control what gets displayed to the console and/or a log file. They give you complete control over every line of code. Most of these can be used as a prefix or as a
suffix. For example:
|
.Mt/\Cmd |
|
Description |
|
.Log |
|
Directs all output (STDOUT)
to LogFile. Errors (STDERR) are not affected. |
|
.LogErr |
|
Directs all errors (STDERR)
to ErrFile, Normal output (STDOUT) will still be displayed. |
|
.Silent |
|
Directs all normal
output (STDOUT) and all errors (STDERR) to NUL. |
|
.Quiet |
|
Directs only normal
output to NUL. Errors will still be displayed. |
|
.Kity |
|
KITY=Keep It To Yourself.
Directs only errors to NUL. Normal output will still be displayed. |
|
.Show |
|
Overrides any
existing redirection and displays the output of a single command. |
|
.ShowErr |
|
Overrides any
existing redirection and displays any errors generated by a single command. |
|
.ShowAll |
|
Overrides any
existing redirection and displays all output and errors for a single command. |