WindTerm/benchmark/urandom_test.sh

7 lines
218 B
Bash
Raw Normal View History

2019-10-12 02:42:08 +08:00
# Generate 100MB data.
if [ ! -f "./benchmark_randomdata" ];then
cat /dev/urandom | base64 | dd of=./benchmark_randomdata bs=1024 count=100KB
fi
echo "Benchmark Result:"
{ time dd if=./benchmark_randomdata bs=10240; }