linux shell 实现定时每天早上8点35分执行一条特定命令
时间: 2023-08-11 08:23:50 浏览: 142
shell定时执行
5星 · 资源好评率100%
同样可以使用 Linux 自带的 cron 工具来实现定时任务。
首先,打开终端,输入以下命令打开 crontab 编辑器:
```bash
crontab -e
```
然后在编辑器中添加以下内容:
```bash
35 8 * * * /path/to/command
```
其中,`35 8 * * *` 表示每天的早上 8 点 35 分执行,`/path/to/command` 表示要执行的命令路径。
例如,如果要每天早上 8 点 35 分执行 `/home/user/test.sh` 脚本,就可以在 crontab 编辑器中添加以下内容:
```bash
35 8 * * * /home/user/test.sh
```
最后,保存并退出编辑器即可。现在,每天早上 8 点 35 分时,Linux 就会自动执行 `/home/user/test.sh` 脚本了。
阅读全文