mirror of
https://github.com/kingToolbox/WindTerm.git
synced 2024-12-28 04:20:07 +08:00
7 lines
218 B
Bash
7 lines
218 B
Bash
# 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; }
|