确定系统中计划任务工具crontabs已经安装并启动(crond),为root用户指定如下计划任务: 在指定的六天(12-20至12-25)里,每天23:30以shiyanlou用户身份执行项目组准备好的自动测试脚本/test_scripts/test.sh。
时间: 2024-03-25 10:37:42 浏览: 78
计划任务自动执行工具
好的,可以按照以下步骤为 root 用户添加定时任务:
1. 确认 crontabs 已经安装并启动。可以使用以下命令检查:
```
systemctl status crond.service
```
如果 crond 未启动,可以使用以下命令启动它:
```
systemctl start crond.service
```
2. 以 root 用户身份编辑 crontab 文件:
```
crontab -e
```
3. 在打开的文件中添加以下内容:
```
30 23 20-25 12 * su - shiyanlou -c "/path/to/test_scripts/test.sh"
```
解释一下上面的命令:
- `30 23 20-25 12 *` 表示定时任务将在 12 月 20 日至 12 月 25 日的每天的 23:30 执行。
- `su - shiyanlou -c "/path/to/test_scripts/test.sh"` 表示执行的命令,其中 `/path/to/test_scripts/test.sh` 需要替换为实际的测试脚本的路径。
4. 保存并退出文件。
这样就完成了定时任务的添加。
阅读全文