OutOrStderr returns output to stderr
()
| 396 | |
| 397 | // OutOrStderr returns output to stderr |
| 398 | func (c *Command) OutOrStderr() io.Writer { |
| 399 | return c.getOut(os.Stderr) |
| 400 | } |
| 401 | |
| 402 | // ErrOrStderr returns output to stderr |
| 403 | func (c *Command) ErrOrStderr() io.Writer { |