#!/bin/sh
if ps aux | grep company:email-batch-notifications-job-seeker | grep -v grep ; then
    exit 0
else
    cd "$1" && php artisan company:email-batch-notifications-job-seeker & >> "$1/cron/logs.log" 2>&1
    exit 0
fi