답변:
예, 추가 공간이 허용되며 가독성을 위해 필드를 멋지게 정렬 할 수 있습니다. 에서man 5 crontab
Blank lines and leading spaces and tabs are ignored.
과
An environment setting is of the form,
name = value
where the spaces around the equal-sign (=) are optional, and any sub‐
sequent non-leading spaces in value will be part of the value assigned
to name.
필드 자체에 대해 매뉴얼 페이지는 다음과 같이 말합니다.
The fields may be separated by spaces or tabs.
분명해야합니다 : 여러 공간이 허용됩니다.
예 추가 공백이 허용됩니다. 치다:
#Mins Hours Days Months Day of the week
10 3 1 1 * /bin/echo "I don't really like cron"
30 16 * 1,2 * /bin/echo "I like cron a little"
* * * 1-12/2 * /bin/echo "I really like cron"
모든 숫자의 순서를 기억하기에는 너무 게으 르기 때문에 항상 열 머리글을 추가하지만 crontab에서 생성하는 내용은 다음과 같습니다.
이 crontab은 매월 1 시간마다 (매달마다) "나는 정말로 cron을 좋아합니다"를 에코해야합니다. cron을 정말로 좋아한다면 분명히 그렇게 할 것입니다. crontab은 또한 1 월과 2 월에 매일 16:30에 "약간 크론을 좋아합니다"라고 에코합니다. 또한 1 월 1 일 3시 10 분에 "정말 크론이 마음에 들지 않습니다"라고 에코합니다.