1. 程式人生 > >用shell實現一個進度條

用shell實現一個進度條

clas index nbsp blog str 進度條 進度 while lee

#!/bin/bash
i=0
str=‘#‘
ch=(‘|‘ ‘\‘ ‘-‘ ‘/‘)
index=0
while [ $i -le 25 ]
do
	printf "[%-25s][%d%%][%c]\r" $str $(($i*4)) ${ch[$index]}
	str+=‘#‘
	let i++
	let index=i%4
	sleep 0.1
done
printf "\n"

用shell實現一個進度條