我想添加进度条,同时给出要完成的功能的百分比,例如[===> ] 20%完成。例如,我有一个使用iperf
的代码,我给出了我想要的持续时间。
function Throughput_test()
{
iperf -c $otherIP -u -b 1000m -t 10 -i1
# Here is where I want to add the progress bar.
# This function takes 10seconds and I want to
# see the progress bar.
}