mirror of
https://github.com/kingToolbox/WindTerm.git
synced 2025-01-13 05:30:06 +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; }
|