Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- # Inicializar el contador
- i=1
- # Bucle while para contar hasta 5
- while [ $i -le 5 ];do
- echo "Número: $i"
- ((i++))
- done
- echo "
- imprimir las lineas de un fichero
- "
- # Fichero a leer
- fichero="/etc/resolv.conf"
- while IFS= read -r linea;do
- echo "$linea" | grep "#" > /dev/null
- if [ $? -eq 0 ]; then
- # si la linea contiene un "#"
- # se pasa a la siguiente iteracion.
- continue
- fi
- echo "$linea"
- done < "$fichero"
- echo "
- Testear conexion
- "
- while ping -c 1 google.com > /dev/null 2>&1;do
- echo $(date) - Conectado
- sleep 5
- done
- echo se perdio la conexion
- status=0
- while [ $status -eq 0 ];do
- ping -c 1 google.com > /dev/null 2>&1
- status=$?
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement