2014年12月11日 星期四

[linux]using cron date variables


using cron date variables
常常有個情境,在使用 crontab run 時,需要把結果歸檔到當天的資料夾或檔案裡面,這時候就會使用,date command 的 format。
在cron內,使用 date variables 遇到 % format 時候就被break了。
一個範例表示

# For details see man 4 crontabs

# Example of job definition:
# .---------------- minute (0 - 59)
# |  .------------- hour (0 - 23)
# |  |  .---------- day of month (1 - 31)
# |  |  |  .------- month (1 - 12) OR jan,feb,mar,apr ...
# |  |  |  |  .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# |  |  |  |  |
# *  *  *  *  * user-name command to be executed

一般而言 可以省略 user-name ,直接寫command。


如果直接使用下面語句會遇到 % 跳脫了。

    *  *  *  *  * /bin/bash /root/pc_back/logstash/script/stat_count.sh >>  "/root/pc_back/logstash/script/stat_count.2stat."`date +%Y%m%d`

必須加上 "%" 來讓 date 成功執行


*  *  *  *  * /bin/bash /root/pc_back/logstash/script/stat_count.sh >>  "/root/pc_back/logstash/script/stat_count.stat."`date +\%Y\%m\%d`



沒有留言:

張貼留言