github.com/chenchun/docker@v1.3.2-0.20150629222414-20467faf132b/pkg/reexec/command_windows.go (about) 1 // +build windows 2 3 package reexec 4 5 import ( 6 "os/exec" 7 ) 8 9 func Command(args ...string) *exec.Cmd { 10 return &exec.Cmd{ 11 Path: Self(), 12 Args: args, 13 } 14 }