Last active
August 29, 2015 14:21
-
-
Save g-ilham/8fbefd9f3b13e77d84f5 to your computer and use it in GitHub Desktop.
Crontabs comands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
crontab -l - просмотр комманд крона | |
crontab -r - удалить все комманды крона | |
crontab -e - редактировать команды крона | |
Для каждого пользователя свой! | |
0 4 * * * /sbin/shutdown -r +5 | |
at the bottom. Explanation: | |
m h dom mon dow command | |
minute hour dayOfMonth Month dayOfWeek commandToRun | |
Ребут сервака в 00:05 каждый день | |
5 0 * * * /sbin/shutdown -r now |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment