//go:build !windowspackagecmdimport("os""syscall")// replaceProcess replaces the current process with the given command (Unix exec).// PyCharm and other IDEs see the final process directly.funcreplaceProcess(pathstring,args[]string)error{returnsyscall.Exec(path,args,os.Environ())}