1 Star 0 Fork 11

徐凯文/script

forked from mo-shan/script 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
progress.sh 486 Bytes
一键复制 编辑 原始数据 按行查看 历史
moshan 提交于 2019-04-24 17:48 . add progress.sh
#!/bin/bash
# File Name: progress.sh
# Author: moshan
# mail: mo_shan@yeah.net
# Created Time: 2019-04-24 17:13:51
# Function: show progress bar.
#########################################################################
mark=('|' '/' '-' '\')
for ((i=0;i<=100;i++))
do
index=$((${i}%4))
if [ ${i} -eq 100 ]
then
mark[0]=""
fi
printf "[\033[33m%-100s\033[0m\033[32m %d%%\033[0m\033[35m%c\033[0m]\r" "${str}" "${i}" "${mark[${index}]}"
sleep 0.1
str=${str}"#"
done
printf "\n"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/kevinx_xu/script.git
git@gitee.com:kevinx_xu/script.git
kevinx_xu
script
script
master

搜索帮助