8 lines
255 B
Bash
Executable File
8 lines
255 B
Bash
Executable File
#!/bin/bash
|
|
while true; do
|
|
python3 /opt/pgz-sport/scrapers/klub_oib_enricher.py 2>&1 | tail -2
|
|
python3 /opt/pgz-sport/scrapers/clan_oib_enricher.py 2>&1 | tail -2
|
|
python3 /opt/pgz-sport/scrapers/sudreg_klub_search.py 2>&1 | tail -2
|
|
sleep 600
|
|
done
|