您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819202122
  1. #!/bin/bash
  2. # $1 = msg , $2 = count
  3. # ex) wait "Wait 5" 5
  4. function wait() {
  5. msg=$1
  6. count=0
  7. total=$2
  8. pstr="[=======================================================================]"
  9. echo $msg
  10. while [ $count -lt $total ]; do
  11. sleep 1 # this is work
  12. count=$(( $count + 1 ))
  13. pd=$(( $count * 73 / $total ))
  14. printf "\r%3d.%1d%% %.${pd}s" $(( $count * 100 / $total )) $(( ($count * 1000 / $total) % 10 )) $pstr
  15. done
  16. echo ''
  17. }