Linux at 命令
时间: 2024-02-12 13:59:51 浏览: 76
Linux 命令
Linux中的at命令可以让用户在指定的时间执行一次性任务。下面是at命令的使用方法:
1. 查看at服务是否启动
```shell
systemctl status atd
```
2. 启动at服务
```shell
systemctl start atd
```
3. 使用at命令提交任务
```shell
at 10:30 tomorrow
at> echo "hello world" > /tmp/hello.txt
at> <EOT>
```
上述命令表示在明天的10:30执行一次性任务,任务内容是将"hello world"写入到/tmp/hello.txt文件中。
4. 查看任务列表
```shell
atq
```
5. 取消任务
```shell
atrm 1
```
上述命令表示取消任务列表中编号为1的任务。
阅读全文