I've been trying to use the following command on my server
dd if=/dev/zero bs=1M count=1024 | md5sum
The output:
1024+0 records in
1024+0 records out
1073741824 bytes (1.1 GB) copied, 2.92245 s, 367 MB/s
cd573cfaace07e7949bc0c46028904ff -
How do I let it show the speed (367 MB/s
) as output only? The status is printed to stderr
.
I'm currently using awk
but it showed the md5 hash.
Helps are appreciated :)