Skip to content

Added RunAndCaptureCombinedOutput #41

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 5, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions process.go
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,17 @@ func (p *Process) RunAndCaptureOutput(ctx context.Context) ([]byte, []byte, erro
return stdout.Bytes(), stderr.Bytes(), err
}

// RunAndCaptureCombinedOutput starts the specified command and waits for it to complete. If the given context
// is canceled before the normal process termination, the process is killed. The standard output and
// standard error of the process are captured and returned combined at process termination.
func (p *Process) RunAndCaptureCombinedOutput(ctx context.Context) ([]byte, error) {
out := &bytes.Buffer{}
p.RedirectStdoutTo(out)
p.RedirectStderrTo(out)
err := p.RunWithinContext(ctx)
return out.Bytes(), err
}

// GetArgs returns the command arguments
func (p *Process) GetArgs() []string {
return p.cmd.Args
Expand Down
Loading