mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-23 06:25:39 +00:00
16 lines
218 B
Bash
16 lines
218 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
progress_file="progress"
|
||
|
echo "0" > "$progress_file"
|
||
|
|
||
|
for ((i=1; i<=100; i++)); do
|
||
|
echo -ne "$i" > "$progress_file"
|
||
|
# echo $i
|
||
|
# sleep 0.1
|
||
|
sleep $((RANDOM / 30000))
|
||
|
done
|
||
|
|
||
|
sleep 1
|
||
|
|
||
|
rm "$progress_file"
|