mirror of
https://github.com/containers/podman.git
synced 2025-10-13 17:26:13 +08:00
13 lines
235 B
Go
13 lines
235 B
Go
//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd
|
|
|
|
package e2e_test
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
func pgrep(_ string) (string, error) {
|
|
out, err := exec.Command("pgrep", "gvproxy").Output()
|
|
return string(out), err
|
|
}
|