8 lines
215 B
Bash
8 lines
215 B
Bash
d="2020-12-22"
|
|
while [ "$d" != "2021-01-01" ] ; do
|
|
echo "Processing $d"
|
|
/usr/bin/php /home/one/project/one/one-api/index.php tools regonline heartbeat process $d
|
|
d=$(date -d "$d + 1 day" +"%Y-%m-%d")
|
|
done
|
|
|