Files
tldr/pages.zh/common/at.md
Jin 67166ff0e7 common/a~g*:fix outdated Chinese pages (#14690)
* common/a~g*:fix outdated Chinese pages

* Update airmon-ng.md

* Update aria2c.md

* update chown

* Update ansible-playbook.md

---------

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2024-11-27 03:20:32 -08:00

26 lines
550 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# at
> 在稍后时间执行命令。
> 结果将被发送到用户的邮箱。
> 更多信息:<https://manned.org/at>.
- 启动 `atd` 守护进程:
`systemctl start atd`
- 交互式创建命令并在 5 分钟后执行(完成后按 `<Ctrl> + D`
`at now + 5 minutes`
- 交互式创建命令并在特定时间执行:
`at {{小时:分钟}}`
- 在今天 10:00 AM 从标准输入执行一个命令:
`echo "{{命令}}" | at 1000`
- 在下周二晚上 9:30 从指定文件执行命令:
`at -f {{路径/到/文件}} 9:30 PM Tue`