浏览代码
make crontab quite
Let's make crontab a little quiet here, unless for those who set up mail for crontab error handling will be disturbed every few minutes.
pull/416/head
Petrus
4 年前
committed by
GitHub
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23
共有
1 个文件被更改,包括
1 次插入 和
1 次删除
-
bin/mw
|
|
@@ -291,7 +291,7 @@ choosecron() { ! pgrep cron >/dev/null && echo "No cron manager running. Install |
|
|
|
read -r minnum |
|
|
|
printf "\033[0m" |
|
|
|
done |
|
|
|
(crontab -l; echo "*/$minnum * * * * $(type mailsync | cut -d' ' -f3)") | crontab - && |
|
|
|
(crontab -l; echo "*/$minnum * * * * $(type mailsync | cut -d' ' -f3)") >/dev/null | crontab - && |
|
|
|
echo "Cronjob added. Mail will sync every $minnum minutes. Be sure you have your cron manager running." |
|
|
|
fi ;} |
|
|
|
|
|
|
|