This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Incam_SGD/var/bin/schedulerTask.sh

13 lines
193 B
Bash

#!/bin/bash
PHP_CLI="/usr/local/zend/bin/php"
BIN_DIR=$(dirname $0)
INSTALL_DIR="../..${BIN_DIR}"
cd $INSTALL_DIR/bin
while true; do
$PHP_CLI -Cq scheduler.php
sleep 30
done