Add simple loading bar script

This commit is contained in:
raul 2025-01-13 13:41:38 +01:00
parent 5786934cbc
commit 460cf2d25b
Signed by: raul
GPG Key ID: C1AA797073F17129
1 changed files with 11 additions and 0 deletions

11
loading.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
main ()
{
for ((i = 0; i < 101; i++)); do
printf "\rProgreso: $i%%"
sleep 0.05s
done
echo -e "\nHecho!"
}
main