自动设置 cron bash 脚本?
如何使一些脚本根据从数据库或其他方式获取的时间自动设置其执行?
有什么简单明了的例子吗?
How to make some script to auto set it's execution based on some time it gets from database or some other way?
Any simple, plain example for that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设:
command_name and_args例如,这将读取来自标准输入的一对“日期”“命令”:
像这样使用它:
或者这个
“调用它”
将两者组合到一个脚本和/或任何其他变体中...
脚本将您的命令排队以使用
at
命令,请参阅man at
。Assumptions:
<space>
command_name and_argsFor example this will read pairs of "date" "command" from the standard input:
Use it like:
or this one
invoke it"
combine both to one script, and/or any other variation...
The scripts queue your commands for the execution with the
at
command. seeman at
.