unpack_string/hw08_envdir_tool/executor.go

8 lines
192 B
Go
Raw Normal View History

2023-10-30 15:21:12 +03:00
package main
// RunCmd runs a command + arguments (cmd) with environment variables from env.
func RunCmd(cmd []string, env Environment) (returnCode int) {
// Place your code here.
return
}