Ubuntu Cron shell
crontab -e
第一次使用crontab會讓你選擇文本編輯器: ubuntu
Select an editor. To change later, run 'select-editor'. 1. /bin/ed 2. /bin/nano <---- easiest 3. /usr/bin/vim.basic 4. /usr/bin/vim.tiny Choose 1-4 [2]:選擇3 ,則可使用vim 來編輯crontab文件。也可使用 "select-editor" 來指定編輯器。
若是想修改vim爲crontab默認編輯器,還能夠經過修改/etc/profile實現 vim
vim /etc/profile
export EDITOR=vim
export VISUAL=vim dom
編輯完須要重啓cron服務 編輯器
sudo /etc/init.d/cron restart
還能夠編輯/etc/crontab來實現定時任務 ide
vim /etc/crontab
# /etc/crontab: system-wide crontab # Unlike any other crontab you don't have to run the `crontab' # command to install the new version when you edit this file # and files in /etc/cron.d. These files also have username fields, # that none of the other crontabs do. SHELL=/bin/sh PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin # m h dom mon dow user command 17 * * * * root cd / && run-parts --report /etc/cron.hourly 25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily ) 47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly ) 52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly ) #
更多cron 幫助: http://wiki.ubuntu.org.cn/CronHowto this