I have seen a crontab record in system.
0-55/5 * * * * root <command>
I read the crontab -e example files and I know the first position stands for minute. But I cannot figure out the meaning of / (slash) there. Could anyone explain the meaning to me?
/is a forward slash.\is a backslash. Forward slashes lean forward. Backslashes lean backwards. – jw013 Feb 18 '12 at 8:25man 5 crontabhas explanations too. – Mat Feb 18 '12 at 8:29man? I read throughman crontaband through it was the end. – yangchenyun Feb 18 '12 at 8:35man crontabbrings up the first entry forcrontab, which is for thecrontabcommand in section 1. Towards the end of that manpage, it saysSEE ALSO crontab(5). That tells you that you can useman 5 crontabto read thecrontabentry in section 5, which describes the format of thecrontabfile. – cjm Feb 18 '12 at 9:17(3)thing in theSEE ALSOsection! – yangchenyun Feb 18 '12 at 13:21