Advertisement
Guest User

Untitled

a guest
Dec 11th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. crontab -l # показывает список задач в кроне
  2. crontab -r # удаляет все задачи
  3. # что бы добавить задачу
  4. export EDITOR=nano;
  5. crontab -e
  6. * * * * * cd /var/www/online-sender.ru/; php /var/www/online-sender.ru/writer.php > /var/log/cron.log 2>&1
  7. потом комбинацию ctrl + x и следуя инструкции;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement