我想将 html 发送go test -c
到标准输出,这样我就可以从 S3 静态资产服务器提供生成的 HTML。
像这样的东西:
arti_fact="s3://cm-html/cm-api/$commit_sha"
go test -coverprofile cover.out .
go tool cover -html=cover.out -o /dev/stdout | aws s3 cp - "$arti_fact"
有没有办法在不使用的情况下写入标准输出-o /dev/stdout
?