blob: 6e1adbc45562b6a9e1f583be3a659c948575c237 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#########################################################################
# 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
./hos_write_complete mybucket my-file.txt ${test_times[$num]}
let "num++"
done
|