crotab定时任务:
crontab基本用法:
- crontab时间设置:
# 5个时间表示:分别为以下 * * * *:表示:分、时、日、月、周
crontab -e:
# 设置每分钟执行1次该命令 * * * * * cd ~/dnmp/www/ali-php php artisan schedule >> /dev/null 2>&1
crontab -l:
* 列出当前用户的所有定时任务
- crotab -r:
* 删除当前用户的定时任务
备注:
# 编辑文件,修改默认编辑器:vim ~/.zshrc (或者.bash_profile) export EDTTOR=vim # 然后,source ~/.zshrc,使其生效,再重新crontab -e来添加定时任务