This commit is contained in:
Jay 2018-12-18 17:12:09 +08:00
parent 1c35860c17
commit e220663e71
1 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,7 @@
package msgcmd
import (
"log"
"regexp"
"strings"
@ -92,6 +93,7 @@ func parseResult(str string) interface{} {
}
}
log.Println("command result ::::: ", m)
return m
}
@ -113,5 +115,6 @@ func runCMD(txt, c string, s *lineobj.SourceObject) (res string) {
res = strings.Replace(res, v[0], cmdRes, 1)
}
}
log.Println("run cmd ::::: ", res)
return
}