linux 命令和教程补充

This commit is contained in:
estomm
2021-12-24 11:16:28 +08:00
parent 40e916976b
commit b7c3653392
586 changed files with 46455 additions and 39 deletions

36
Linux/command/atq.md Normal file
View File

@@ -0,0 +1,36 @@
atq
===
列出当前用户的at任务列表
## 补充说明
**atq命令** 显示系统中待执行的任务列表也就是列出当前用户的at任务列表。
### 语法
```shell
atq [-V] [-q 队列] [-v]
```
### 选项
```shell
-V显示版本号
-q查询指定队列的任务。
```
### 实例
```shell
at now + 10 minutes
at> echo 1111
at> <eot>
job 3 at Fri Apr 26 12:56:00 2013
atq
3 Fri Apr 26 12:56:00 2013 a root
```