如何在nano编辑器上保存cronjob?


8

我可以通过Putty登录到我的Web服务器上的nano或vi。

通过键入crontab -e打开nano编辑器后,我输入以下内容。

# m h dom mon dow command (this comes up always at the top)

*/30 * * * * wget -q -O /dev/null  http://mywebsite.org/admin/cron.php

但是,我不确定此后需要做什么。

Q1。我需要保存吗?如果是这样,如何保存该文件?

我找不到要保存的命令。有^获得帮助,^ Writeout等。

在屏幕顶部,显示以下内容。GNU nano 2.0.7文件:/tmp/crontab.Q1SgwM/crontab

Q2。这是Cron存放的地方吗?如果要编辑/更改,如何打开它?

Q3。这就是我需要做的吗?Cron是否会自动启动?

提前致谢。


在这种情况下,FYI curl比wget更合适。
Martin Murphy

Answers:


11

您只需要输入crtl-X,然后输入Y确认,然后输入Enter即可接受默认的写入路径。
文件将被写入临时目录,但crontab将设法将其放在正确的位置。
然后,您可以键入crontab -l并查看您的行已保存

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.