()
| 116 | } |
| 117 | |
| 118 | func (this *Cmd) String() string { |
| 119 | if this.rawCmd != nil { |
| 120 | return this.rawCmd.String() |
| 121 | } |
| 122 | var newCmd = exec.Command(this.name, this.args...) |
| 123 | return newCmd.String() |
| 124 | } |
| 125 | |
| 126 | func (this *Cmd) Process() *os.Process { |
| 127 | if this.rawCmd != nil { |
no outgoing calls