2018-02-05 16:05:59 -05:00
|
|
|
package reexec // import "github.com/docker/docker/pkg/reexec"
|
2015-05-08 17:15:53 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"os/exec"
|
|
|
|
)
|
|
|
|
|
2015-07-24 13:51:51 -04:00
|
|
|
// Self returns the path to the current process's binary.
|
|
|
|
// Uses os.Args[0].
|
|
|
|
func Self() string {
|
|
|
|
return naiveSelf()
|
|
|
|
}
|
|
|
|
|
2016-08-01 22:06:38 -04:00
|
|
|
// Command returns *exec.Cmd which has Path as current binary.
|
2015-07-20 13:16:37 -04:00
|
|
|
// For example if current binary is "docker.exe" at "C:\", then cmd.Path will
|
|
|
|
// be set to "C:\docker.exe".
|
2015-05-08 17:15:53 -04:00
|
|
|
func Command(args ...string) *exec.Cmd {
|
|
|
|
return &exec.Cmd{
|
|
|
|
Path: Self(),
|
|
|
|
Args: args,
|
|
|
|
}
|
|
|
|
}
|