cronjob ?

    Diese Seite verwendet Cookies. Durch die Nutzung unserer Seite erklären Sie sich damit einverstanden, dass wir Cookies setzen. Weitere Informationen

    • RE: cronjob ?

      Original von parisien
      It is not easy to change that with the remote control.
      I guess so :)

      Is there a file in the vu+ filesystem in which i can add this cronjob ?

      Yes, of course; are you familiar with one of the Linux/Unix editors? vi or joe? Then use the "crontab -e" command and add a line like

      Quellcode

      1. * * * * * /usr/bin/wget -O- http://www.domain.fr/test.php >/dev/null 2>&1
      to your crontab.

      If you don't know "vi", I'd suggest you use "joe"; in that case start the crontab command as

      Quellcode

      1. EDITOR=joe crontab -e
      and when ready editing, save the contents via the command Ctrl-K Ctrl-X.
    • RE: cronjob ?

      Hello thank you for all your help.

      i know to use vi and i just checked how to use crontab.

      just one last little question.

      why the
      2>&1

      at the end of the line ?

      shouldn't it be
      >/dev/null 2>/dev/null
      ?

      Thank you

      Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von parisien ()