
我尝试执行一些命令(在 config.json 内) 只有 npm 命令有显示输出
这是我第一次使用 stackoverflow 如果做得不好请多多包涵
预期结果: 当我在 config.json 中写入任何命令时 将输出正确的结果
main.go
func main () {
file, _ := os.open("config.json")
byteres, _ := ioutil.readall(file)
var config config
json.unmarshal(byteres, &config)
defer file.close()
process := exec.command(config.startcommand)
stdout, _ := process.stdoutpipe()
processscanner := bufio.newscanner(stdout)
processscanner.split(bufio.scanlines)
process.start()
go func() {
for processscanner.scan() {
message := processscanner.text()
fmt.println(message)
}
}()
}
配置.json
{
"StartCommand": "npm"
}
你的 main 函数不会等待你的 goroutine 完成。使用 sync.WaitGroup 阻止 main 直到 goroutine 完成。
以上就是Golang 当我尝试执行命令时没有输出的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号