crontab 中提示字符作用 ^G Get Help ^O Write Out ^W Where Is ^K Cut Text ^J Justify ^C Cur Pos M-U Undo M-A Mark Text M-] To Bracket M-Q Previous ^X Exit ^R Read File ^\ Replace ^U Paste Text ^T To Spell ^_ Go To Line M-E Redo M-6 Copy Text ^Q Where Was M-W Next
时间: 2024-02-15 11:27:02 浏览: 228
这些字符是编辑器 Vi 或 Vim 的常用快捷键表,用于在 crontab 中进行编辑。其中,^G 表示获取帮助,^O 表示写入文件,^W 表示查找,^K 表示剪切文本,^J 表示调整文本格式,^C 表示当前位置,M-U 表示撤销,M-A 表示标记文本,M-] 表示跳到匹配的括号,M-Q 表示上一条命令,^X 表示退出,^R 表示读取文件,^\ 表示替换,^U 表示粘贴文本,^T 表示拼写检查,^_ 表示跳转到指定行,M-E 表示重做,M-6 表示复制文本,^Q 表示查找上一次输入的文本,M-W 表示跳到下一条命令。在 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 ^G Get Help ^O Write Out ^W Where Is ^K Cut Text ^J Justify ^C Cur Pos M-U Undo M-A Mark Text ^X Exit ^R Read File ^\ Replace ^U Uncut Text ^T To Spell ^_ Go To Line M-E Redo M-6 Copy Text这样的界面我要怎么输出啊
这是一个 crontab 文件的示例,它包含了一些注释和示例命令,用于说明如何定义 cron 任务。如果你想编辑该文件,可以使用以下命令:
```
crontab -e
```
该命令会打开一个文本编辑器,让你编辑当前用户的 crontab 文件。在编辑器中,你可以添加、修改或删除 cron 任务,然后保存文件并退出编辑器。
如果你只是想查看当前用户的 crontab 文件,可以使用以下命令:
```
crontab -l
```
该命令会将当前用户的 crontab 文件输出到终端。
阅读全文