ApacheBench 结果保存到文件中
我想将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以按照以下代码操作。
You can follow the below code.
尝试将“2>&1”放在“> file.txt”之后。
Try putting "2>&1" after "> file.txt".
如果在 MacOS 上,您还可以直接将输出复制到剪贴板。
If on MacOS you can also copy the output to the clipboard directly.