ApacheBench 结果保存到文件中

发布于 2024-08-21 12:46:58 字数 159 浏览 10 评论 0原文

我想将 Linux 上的 ApacheBench (ab) 工具保存到文件中。当我使用 -v 2 运行它时,它会在我的 ssh 窗口中显示一些结果。如何将这些数据移动到一个文件中并确保它不再显示在 ssh 上?我已经尝试过了> file.txt 但它不起作用并且仍然在我的 ssh 窗口中显示数据。

I would like to save ApacheBench (ab) tool on linux to a file. When I run it with -v 2 it displays some results in my ssh window. How to move these data into a file and make sure that it will not display on ssh no more? I've tried > file.txt but it does not work and still display data in my ssh window.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

桃扇骨 2024-08-28 12:46:58

您可以按照以下代码操作。

ab -k -n 2000 -c 10 -g Example.txt http://www.example.com/ >ExampleResult.txt 2>&1 

You can follow the below code.

ab -k -n 2000 -c 10 -g Example.txt http://www.example.com/ >ExampleResult.txt 2>&1 
淡笑忘祈一世凡恋 2024-08-28 12:46:58

尝试将“2>&1”放在“> file.txt”之后。

Try putting "2>&1" after "> file.txt".

仲春光 2024-08-28 12:46:58

如果在 MacOS 上,您还可以直接将输出复制到剪贴板。

# MacOS copies result to clipboard
ab -k -n 2000 -c 10 http://www.example.com/ 2>&1 | pbcopy

If on MacOS you can also copy the output to the clipboard directly.

# MacOS copies result to clipboard
ab -k -n 2000 -c 10 http://www.example.com/ 2>&1 | pbcopy
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文