mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 22:15:39 +00:00
16 lines
218 B
Bash
Executable file
16 lines
218 B
Bash
Executable file
#!/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"
|