views:

30

answers:

1

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.

+1  A: 

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

malonso
It does not work
tomaszs