readme and license
[whiptailexamples/.git] / progress.sh
1 #!/bin/bash
2 {
3     for ((i = 0 ; i <= 100 ; i+=20)); do
4         sleep 1
5         echo $i
6     done
7 } | whiptail --gauge "Please wait while installing" 6 60 0