You are on page 1of 3

Estabilidad tiempo=$1

La unidad=$2

TERAPIA DE LA OLLA ARROZ CON LECHE


numero 1

.styleTable > tbody:nth-child(2) > tr:nth-child(2) > td:nth-child(2) > ul:nth-child(1) > li:nth-child(2)

numero 1 /3 .styleTable > tbody:nth-child(2) > tr:nth-child(3) > td:nth-child(2) > ul:nth-child(1)
> li:nth-child(2)

numero 2

.styleTable > tbody:nth-child(2) > tr:nth-child(2) > td:nth-child(2) > ul:nth-child(1) > li:nth-child(3)

numero 2 / 3 .styleTable > tbody:nth-child(2) > tr:nth-child(3) > td:nth-child(2) > ul:nth-child(1)
> li:nth-child(3)

numero 3

.styleTable > tbody:nth-child(2) > tr:nth-child(2) > td:nth-child(2) > ul:nth-child(1) > li:nth-child(4)

numero 3 / 3 .styleTable > tbody:nth-child(2) > tr:nth-child(3) > td:nth-child(2) > ul:nth-child(1)
> li:nth-child(4)

numero 4

.styleTable > tbody:nth-child(2) > tr:nth-child(2) > td:nth-child(2) > ul:nth-child(1) > li:nth-child(5)

numero 5

.styleTable > tbody:nth-child(2) > tr:nth-child(2) > td:nth-child(2) > ul:nth-child(1) > li:nth-child(6)

numero 6

.styleTable > tbody:nth-child(2) > tr:nth-child(2) > td:nth-child(2) > ul:nth-child(1) > li:nth-child(7)

el nombre "Revancha" esta en el SELECTOR CSS:

.styleTable > tbody:nth-child(2) > tr:nth-child(2) > td:nth-child(2) > ul:nth-child(2) > li:nth-child(1)

num_monitoreos=$3
# Validar unidad de tiempo ingresada

if [ "$unidad" == "segundos" ]; then

intervalo=$tiempo

elif [ "$unidad" == "minutos" ]; then

intervalo=$((tiempo * 60))

if [ "tiempo" >= "2" ]; then


#https://bioinf.comav.upv.es/courses/unix/scripts_bash.html

echo "OK, Valor arriba del rango minimo"

else

echo "coloque un valor mayor"

exit 1

You might also like