8 lines
265 B
Bash
Executable File
8 lines
265 B
Bash
Executable File
#!/bin/bash
|
|
while true; do
|
|
python3 /opt/pgz-sport/scrapers/gov_hr_sport_scraper.py 2>&1 | tail -2
|
|
python3 /opt/pgz-sport/scrapers/sukob_sport_scraper.py 2>&1 | tail -2
|
|
python3 /opt/pgz-sport/scrapers/sport_federations_deep.py 2>&1 | tail -2
|
|
sleep 3600
|
|
done
|