mirror of
git://git.acid.vegas/random.git
synced 2024-11-14 12:06:38 +00:00
7 lines
128 B
Bash
7 lines
128 B
Bash
PROGRESS='#'
|
|
for PERCENT in {1..100}; do
|
|
echo -ne "$PERCENT%\t$PROGRESS\r"
|
|
PROGRESS="$PROGRESS#"
|
|
sleep 0.05
|
|
done
|
|
echo -e "\n" |