I propose adding String() to *exec.Cmd. For example, ```go cmd := exec.Command("ls", "-l") fmt.Printltn(cmd) ``` will print ``` ls -l ``` or ``` /bin/ls -l ``` This is useful when we want to improve error messages.