17 lines
467 B
Bash
Executable File
17 lines
467 B
Bash
Executable File
#########################################################################
|
|
# File Name: test_times.sh
|
|
# Author: pxz
|
|
# Created Time: Mon 21 Sep 2020 04:43:35 PM CST
|
|
#########################################################################
|
|
#!/bin/bash
|
|
test_times=(1, 10, 100, 1000, 10000)
|
|
num=0
|
|
|
|
while((${num} < 5))
|
|
do
|
|
echo ./hos_write_complete mybucket 1k.data ${test_times[$num]}
|
|
./hos_write_complete mybucket 1k.data ${test_times[$num]}
|
|
let "num++"
|
|
done
|
|
|