进度条---shell脚本版本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了进度条---shell脚本版本相关的知识,希望对你有一定的参考价值。
#!/bin/bash bar="" count=0 clock=("|" "/" ‘-‘ ‘//‘) index=0 while [ $count -le 100 ] do printf "[%-100s] [%d] [%c]\r" "$bar" "$count" "${clock[index]}" bar=${bar}"=" ((count++)) ((index=count%4)) sleep 0.05 done printf "\n"
本文出自 “小镇青苔” 博客,请务必保留此出处http://fengbaoli.blog.51cto.com/10538178/1789997
以上是关于进度条---shell脚本版本的主要内容,如果未能解决你的问题,请参考以下文章