close

使用linux 內建指令做排程

[at] 指定時間一次性執行工作

[cron] 循環式排程

1. 如何管理可使用at 的名單

/etc/at.allow

/etc/at.deny

a.系統會先找at.allow (如果在名單內 則可以使用at)

b.找不到at.allow, 下一個會找at.deny (全部使用者皆可使用at 除了在deny內的名單)

c.找不到allow,同時也找不到deny (只有root可以使用)

ref

2.cron

reference

a.如何管理可使用cron的名單

/etc/cron.allow

/etc/cron.deny

b. 排程工作會被記錄在

/var/spool/cron/

c. 編輯一項排程

crontab -e  #[進入排成編輯]

*/5 * * * *  mail -s "testing" u1 < /home/lover.txt #[每五分鐘寄信給u1]

分 時 日 月 年 執行的指令

esc :wq  可以離開並儲存編輯

d.查詢目前已有的排程項目

crontab -l

e.刪除全部排程

crontab -r

f.刪除部分排程

crontab -e

把不要的砍掉

 

3.

 

 

 

 

arrow
arrow
    全站熱搜
    創作者介紹

    quantum2nd 發表在 痞客邦 留言(0) 人氣()