Command-Line

crontab -e 簡單問題

  • November 30, 2020

我是 crontab 命令的新手,在研究這個命令時,我突然輸入了一些數字,讓我的 crontab -e 看起來像這樣:


pi@raspberrypi:~ $ crontab -e
no crontab for pi - using an empty one
889

有什麼方法可以將 crontab 設置回預設值或如何刪除它們?我只想使用 crontab 自動完成我的任務。

# Edit this file to introduce tasks to be run by cron.
#
# Each task to run has to be defined through a single line
# indicating with different fields when the task will be run
# and what command to run for the task
#
# To define the time you can provide concrete values for
# minute (m), hour (h), day of month (dom), month (mon),
# and day of week (dow) or use '*' in these fields (for 'any').
#
# Notice that tasks will be started based on the cron's system
# daemon's notion of time and timezones.
#
# Output of the crontab jobs (including errors) is sent through
# email to the user the crontab file belongs to (unless redirected).
#
# For example, you can run a backup of all your user accounts
# at 5 a.m every week with:
# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
#
# For more information see the manual pages of crontab(5) and cron(8)
#
# m h  dom mon dow   command
"/tmp/crontab.QzVh1G/crontab" 23 lines, 898964 characters

在我按照您的指示進行操作後,它會顯示為這樣export VISUAL=vi crontab -e,而且除了使用 qa 之外,我似乎無法編輯此文件!退出。有什麼我想念的嗎?

您的編輯器設置為ed. ed編輯器是一個非常基本的行編輯器,它會在您打開文件時輸出文件中的字節數。在這種情況下,您的 crontab 文件包含 889 個字節(在編輯器中鍵入,p並按下Enter以查看文件的內容)。

您很可能不想ed用作編輯器(或者您會意識到您已經開始使用它)。要退出編輯器,只需鍵入q並按Enter,或按Ctrl+D

然後crontab -e再次執行,但將VISUAL環境變數設置為您最常用於編輯系統上文件的編輯器。

以下是您如何設置VISUALvi的範例,但您可以使用nano或任何其他碰巧安裝的終端編輯器。

export VISUAL=vi
crontab -e

您可能希望VISUAL在 shell 的啟動文件中設置 的值(~/.bashrc如果您使用的是bash)。

引用自:https://unix.stackexchange.com/questions/615399