Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- # Variable incremental
- i=1
- while [ $i -le 5 ];do
- echo "Valor de 'i': $i"
- #i=$((i + 1))
- ((i++))
- done
- while systemctl is-active mariadb > /dev/null; do
- echo "] El servcio mariadb esta activo, detengalo para prosegir"
- sleep 1
- clear
- echo "]"
- sleep 1
- clear
- done
- while
- echo "Se prosigue con el script."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement