11 lines
233 B
Bash
11 lines
233 B
Bash
#!/bin/bash
|
|
# auto.sh - Script que ejecuta el scrapper cada 24 horas con un bucle infinito
|
|
|
|
while true
|
|
do
|
|
# Ejecutar el script Python
|
|
python /app/webscrapper.py
|
|
|
|
# Dormir por 24 horas (86400 segundos)
|
|
sleep 86400
|
|
done |