To show crontabs
1 2 3 |
crontab -l |
To edit crontabs
1 2 3 |
crontab -e |
If you do not edit it then CTRL Z will let you exit.
Then press ‘o’ to insert then add your crontab
1 2 3 |
5 1 * * * usr/bin/php /tmp/backup/senddata.php >/dev/null |
Then press
1 2 3 4 |
'escape' to exit editor ':wq' and press enter to save and quit |