This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files

17 lines
467 B
Bash
Raw Permalink Normal View History

2020-09-21 19:19:18 +08:00
#########################################################################
# 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
2020-10-14 15:23:01 +08:00
echo ./hos_write_complete mybucket 1k.data ${test_times[$num]}
./hos_write_complete mybucket 1k.data ${test_times[$num]}
2020-09-21 19:19:18 +08:00
let "num++"
done