#!/bin/bash

# URL a ejecutar
envio="http://locahost/sifen/ekuatia/envioLotes.php"
consulta="http://locahost/sifen/ekuatia/consultaLote.php"
correo="http://locahost/sifen/email/send_email.php"

# Ejecuta el enlace
curl "$envio"
sleep 3
curl "$correo"
# Espera 5 segundos
sleep 5

# Ejecuta el enlace nuevamente
curl "$envio"

sleep 5
curl "$consulta"

sleep 5
 curl "$envio"

sleep 10

curl "$consulta"
sleep 3
curl "$correo"
