1// +build !linux,!windows,!freebsd,!solaris,!darwin
2
3package reexec
4
5import (
6	"os/exec"
7)
8
9// Command is unsupported on operating systems apart from Linux, Windows, Solaris and Darwin.
10func Command(args ...string) *exec.Cmd {
11	return nil
12}
13