如何在 windows 中使用工具 'vegeta'

How to use tool 'vegeta' in windows

我安装了golang最新版本(go version go1.17.1 windows/amd64)

并且我使用命令 go install github.com/tsenart/vegeta@latest

成功安装了 vegeta

但是如果我命令,就像我在 vegeta --help 中看到的那样,echo "GET http://localhost:8080/" | vegeta attack -duration=5s | tee results.bin | vegeta report in cmd

然后我面对 'tee' is not recognized as an internal or external command, executable program or batch file.

我不知道为什么会这样

我是不是命令有误?我认为 echo "GET ~~ vegeta report 命令适用于类 Unix,可能不适用于 windows.

tee 是(广义上的)一个 Linux 命令。幸运的是,powershell 有一个版本,尝试使用它而不是 cmd

Related question